{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oVIYny74PeJFPEKrx73T/Eq2MTgVYUUfUWffCAiWa/ScreenshotEditor.js", "ssg:https://framerusercontent.com/modules/b3ffK8U3hwvZn4oisiPL/kkidSY6e5I8s2Pl89oFk/ScreenshotEditorMobile.js", "ssg:https://framerusercontent.com/modules/bJ0zsFdynOmvIkkd1M3Q/Au974V6lc0vPIBvcDzXb/Ts8U9FFH0.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";const imageLinks=[\"https://images.unsplash.com/photo-1658579126739-03385cb1749b?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://images.unsplash.com/photo-1521193089946-7aa29d1fe776?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://images.unsplash.com/photo-1547623641-d2c56c03e2a7?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://framerusercontent.com/images/sdxq06qxPf3oNmBefnesFfv5vlY.png?w=256\",\"https://framerusercontent.com/images/MXG2wazZbwNFlLoIiYe1VdXPQ8.png?w=256\",\"https://images.unsplash.com/photo-1671716784499-a3d26826d844?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\"];const fullSizeLinks=[\"https://images.unsplash.com/photo-1658579126739-03385cb1749b?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1680\",\"https://images.unsplash.com/photo-1521193089946-7aa29d1fe776?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1680\",\"https://images.unsplash.com/photo-1547623641-d2c56c03e2a7?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1680\",\"https://framerusercontent.com/images/sdxq06qxPf3oNmBefnesFfv5vlY.png\",\"https://framerusercontent.com/images/MXG2wazZbwNFlLoIiYe1VdXPQ8.png\",\"https://images.unsplash.com/photo-1671716784499-a3d26826d844?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=1680\"];export default function ImageEditor(props){const[backgroundImage,setBackgroundImage]=useState(null);const[foregroundImage,setForegroundImage]=useState(null);const[cornerRadius,setCornerRadius]=useState(props.cornerRadius);const[foregroundSize,setForegroundSize]=useState(props.foregroundSize);const[aspectRatio,setAspectRatio]=useState(props.aspectRatio);const[selectedImageIndex,setSelectedImageIndex]=useState(3)// Set the last one as default\n;const canvasRef=useRef(null);const inputFileRef=useRef(null);const scaleFactor=2// For high-res rendering\n;// Preload default background image\nuseEffect(()=>{const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=fullSizeLinks[selectedImageIndex];img.onload=()=>setBackgroundImage(img);},[selectedImageIndex]);const selectBackgroundImage=index=>{setSelectedImageIndex(index);const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=fullSizeLinks[index];img.onload=()=>{setBackgroundImage(img);drawImagesOnCanvas()// Redraw immediately after selection\n;};};const handleBackgroundUpload=event=>{const file=event.target.files[0];const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=URL.createObjectURL(file);img.onload=()=>{setBackgroundImage(img);drawImagesOnCanvas()// Redraw immediately after upload\n;};};const handleForegroundUpload=event=>{const file=event.target.files[0];const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=URL.createObjectURL(file);img.onload=()=>{setForegroundImage(img);drawImagesOnCanvas()// Redraw immediately after upload\n;};};const getCanvasDimensions=()=>{switch(aspectRatio){case\"16:9\":return{width:1600,height:900};case\"4:3\":return{width:1200,height:900};case\"3:2\":return{width:1200,height:800};case\"1:1\":default:return{width:1e3,height:1e3};}};const drawImagesOnCanvas=()=>{const canvas=canvasRef.current;const{width,height}=getCanvasDimensions();canvas.width=width*scaleFactor;canvas.height=height*scaleFactor;const ctx=canvas.getContext(\"2d\");ctx.clearRect(0,0,canvas.width,canvas.height);if(backgroundImage){ctx.drawImage(backgroundImage,0,0,canvas.width,canvas.height);}if(foregroundImage){const canvasAspect=canvas.width/canvas.height;const imageAspect=foregroundImage.width/foregroundImage.height;let newWidth,newHeight;if(imageAspect>canvasAspect){newWidth=canvas.width*.8*foregroundSize;newHeight=newWidth/imageAspect;}else{newHeight=canvas.height*.8*foregroundSize;newWidth=newHeight*imageAspect;}const x=(canvas.width-newWidth)/2;const y=(canvas.height-newHeight)/2;ctx.save();if(cornerRadius>0){const scaledRadius=cornerRadius*scaleFactor;ctx.beginPath();ctx.moveTo(x+scaledRadius,y);ctx.lineTo(x+newWidth-scaledRadius,y);ctx.quadraticCurveTo(x+newWidth,y,x+newWidth,y+scaledRadius);ctx.lineTo(x+newWidth,y+newHeight-scaledRadius);ctx.quadraticCurveTo(x+newWidth,y+newHeight,x+newWidth-scaledRadius,y+newHeight);ctx.lineTo(x+scaledRadius,y+newHeight);ctx.quadraticCurveTo(x,y+newHeight,x,y+newHeight-scaledRadius);ctx.lineTo(x,y+scaledRadius);ctx.quadraticCurveTo(x,y,x+scaledRadius,y);ctx.closePath();ctx.clip();}ctx.drawImage(foregroundImage,x,y,newWidth,newHeight);ctx.restore();}};useEffect(()=>{drawImagesOnCanvas();},[backgroundImage,foregroundImage,cornerRadius,foregroundSize,aspectRatio]);const saveImage=()=>{const canvas=canvasRef.current;const dataURL=canvas.toDataURL();// Log the canvas dataURL to see if it contains valid data\nconsole.log(dataURL);const link=document.createElement(\"a\");link.download=\"exported-image.png\";link.href=dataURL;link.click();};return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\",padding:\"0px\",fontFamily:\"Inter\",maxWidth:\"1200px\",margin:\"0 auto\",gap:\"48px\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{flex:\"1 1 auto\",minWidth:0},children:[/*#__PURE__*/_jsxs(\"div\",{onClick:()=>inputFileRef.current.click(),style:{width:\"100%\",height:\"auto\",position:\"relative\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"auto\",pointerEvents:\"none\"}}),!foregroundImage&&/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:circleStyle,children:/*#__PURE__*/_jsx(\"span\",{style:plusStyle,children:\"+\"})}),/*#__PURE__*/_jsx(\"div\",{style:textStyle,children:\"Add your image\"})]})]}),/*#__PURE__*/_jsx(\"input\",{type:\"file\",ref:inputFileRef,onChange:handleForegroundUpload,accept:\"image/*\",style:{display:\"none\"}})]}),/*#__PURE__*/_jsxs(\"div\",{style:{width:\"300px\",flexShrink:0},children:[/*#__PURE__*/_jsx(\"h2\",{style:headingStyleFirst,children:\"Background\"}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",gap:\"8px\",marginBottom:\"10px\"},children:imageLinks.map((url,index)=>/*#__PURE__*/_jsx(\"div\",{onClick:()=>selectBackgroundImage(index),style:{width:\"44px\",height:\"44px\",backgroundImage:`url(${url})`,backgroundSize:\"cover\",cursor:\"pointer\",border:selectedImageIndex===index?\"2px solid black\":\"0px solid #ddd\",borderRadius:\"8px\",backgroundColor:\"#f1f1f1\"}},index))}),/*#__PURE__*/_jsx(\"div\",{style:{marginBottom:\"20px\"},children:/*#__PURE__*/_jsxs(\"label\",{style:{...buttonStyle,display:\"block\",textAlign:\"center\",backgroundColor:\"#f1f1f1\",color:\"black\"},children:[backgroundImage?\"Custom background\":\"Choose file\",/*#__PURE__*/_jsx(\"input\",{type:\"file\",onChange:handleBackgroundUpload,accept:\"image/*\",style:{display:\"none\"}})]})}),/*#__PURE__*/_jsx(\"h2\",{style:headingStyle,children:\"Properties\"}),/*#__PURE__*/_jsxs(\"div\",{style:{marginBottom:\"20px\"},children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Corner Radius\"}),/*#__PURE__*/_jsxs(\"div\",{style:sliderContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"0\",max:\"100\",value:cornerRadius,onChange:e=>setCornerRadius(parseInt(e.target.value,10)),style:sliderStyle}),/*#__PURE__*/_jsx(\"span\",{style:valueDisplayStyle,children:cornerRadius})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{marginBottom:\"20px\"},children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Foreground Size\"}),/*#__PURE__*/_jsxs(\"div\",{style:sliderContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"0.5\",max:\"2\",step:\"0.01\",value:foregroundSize,onChange:e=>setForegroundSize(parseFloat(e.target.value)),style:sliderStyle}),/*#__PURE__*/_jsx(\"span\",{style:valueDisplayStyle,children:foregroundSize.toFixed(2)})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{marginBottom:\"20px\"},children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Aspect Ratio\"}),/*#__PURE__*/_jsxs(\"select\",{value:aspectRatio,onChange:e=>setAspectRatio(e.target.value),style:selectStyle,children:[/*#__PURE__*/_jsx(\"option\",{value:\"1:1\",children:\"1:1\"}),/*#__PURE__*/_jsx(\"option\",{value:\"16:9\",children:\"16:9\"}),/*#__PURE__*/_jsx(\"option\",{value:\"4:3\",children:\"4:3\"}),/*#__PURE__*/_jsx(\"option\",{value:\"3:2\",children:\"3:2\"})]})]}),/*#__PURE__*/_jsx(\"button\",{onClick:saveImage,style:buttonStyle,children:\"Save Image\"})]})]});}const placeholderStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",textAlign:\"center\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\"};const circleStyle={width:\"60px\",height:\"60px\",borderRadius:\"50%\",border:\"2px dashed #fff\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",marginBottom:\"10px\"};const plusStyle={fontSize:\"24px\",color:\"#fff\",marginBottom:\"4px\"};const textStyle={fontSize:\"16px\",color:\"#fff\",fontFamily:\"Archivo Narrow, sans-serif\"};const sliderContainerStyle={display:\"flex\",alignItems:\"center\",gap:\"10px\"};const sliderStyle={flexGrow:1,appearance:\"none\",height:\"16px\",background:\"#f1f1f1\",outline:\"none\",opacity:\"1\",transition:\"opacity 0.2s\",borderRadius:\"20px\"};const valueDisplayStyle={minWidth:\"40px\",textAlign:\"center\",padding:\"4px 8px\",background:\"#f1f1f1\",borderRadius:\"4px\",fontSize:\"14px\",fontFamily:\"Archivo Narrow, sans-serif\"};const selectStyle={width:\"100%\",padding:\"10px\",border:\"none\",borderRadius:\"8px\",fontSize:\"14px\",fontFamily:\"Archivo Narrow, sans-serif\",background:\"#f1f1f1\"};const buttonStyle={width:\"100%\",padding:\"12px\",backgroundColor:\"black\",color:\"white\",border:\"none\",borderRadius:\"8px\",fontSize:\"18px\",cursor:\"pointer\",transition:\"background-color 0.2s\",marginTop:\"auto\",fontFamily:\"Archivo Narrow, sans-serif\",display:\"inline-block\",textAlign:\"center\",fontWeight:400};const headingStyle={marginBottom:\"8px\",color:\"#333\",fontFamily:\"Archivo Narrow, sans-serif\",fontSize:\"28px\",marginTop:\"28px\"};const headingStyleFirst={marginBottom:\"8px\",color:\"#333\",fontFamily:\"Archivo Narrow, sans-serif\",fontSize:\"28px\",marginTop:\"0px\"};const labelStyle={display:\"block\",marginBottom:\"4px\",marginTop:\"16px\",color:\"#555\",fontFamily:\"Archivo Narrow, sans-serif\",fontSize:\"16px\",fontWeight:500};ImageEditor.defaultProps={cornerRadius:28,foregroundSize:1,aspectRatio:\"4:3\"};addPropertyControls(ImageEditor,{cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",min:0,max:100},foregroundSize:{type:ControlType.Number,title:\"Foreground Size\",min:.5,max:2,step:.01},aspectRatio:{type:ControlType.Enum,title:\"Aspect Ratio\",options:[\"1:1\",\"16:9\",\"4:3\",\"3:2\"],optionTitles:[\"1:1\",\"16:9\",\"4:3\",\"3:2\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ImageEditor\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScreenshotEditor.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";const imageLinks=[\"https://images.unsplash.com/photo-1658579126739-03385cb1749b?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://images.unsplash.com/photo-1521193089946-7aa29d1fe776?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://images.unsplash.com/photo-1547623641-d2c56c03e2a7?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\",\"https://framerusercontent.com/images/sdxq06qxPf3oNmBefnesFfv5vlY.png?w=256\",\"https://framerusercontent.com/images/MXG2wazZbwNFlLoIiYe1VdXPQ8.png?w=256\",\"https://images.unsplash.com/photo-1671716784499-a3d26826d844?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb&w=256\"];const fullSizeLinks=[\"https://images.unsplash.com/photo-1658579126739-03385cb1749b?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb\",\"https://images.unsplash.com/photo-1521193089946-7aa29d1fe776?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb\",\"https://images.unsplash.com/photo-1547623641-d2c56c03e2a7?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb\",\"https://framerusercontent.com/images/sdxq06qxPf3oNmBefnesFfv5vlY.png\",\"https://framerusercontent.com/images/MXG2wazZbwNFlLoIiYe1VdXPQ8.png\",\"https://images.unsplash.com/photo-1671716784499-a3d26826d844?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb\"];export default function ImageEditor(props){const[backgroundImage,setBackgroundImage]=useState(null);const[foregroundImage,setForegroundImage]=useState(null);const[cornerRadius,setCornerRadius]=useState(props.cornerRadius);const[foregroundSize,setForegroundSize]=useState(props.foregroundSize);const[aspectRatio,setAspectRatio]=useState(props.aspectRatio);const[selectedImageIndex,setSelectedImageIndex]=useState(3)// Set the last one as default\n;const canvasRef=useRef(null);const inputFileRef=useRef(null);const scaleFactor=2// For high-res rendering\n;// Preload default background image\nuseEffect(()=>{const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=fullSizeLinks[selectedImageIndex];img.onload=()=>setBackgroundImage(img);},[selectedImageIndex]);const selectBackgroundImage=index=>{setSelectedImageIndex(index);const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=fullSizeLinks[index];img.onload=()=>{setBackgroundImage(img);drawImagesOnCanvas()// Redraw immediately after selection\n;};};const handleBackgroundUpload=event=>{const file=event.target.files[0];const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=URL.createObjectURL(file);img.onload=()=>{setBackgroundImage(img);drawImagesOnCanvas()// Redraw immediately after upload\n;};};const handleForegroundUpload=event=>{const file=event.target.files[0];const img=new Image;img.crossOrigin=\"Anonymous\"// Set the crossOrigin attribute\n;img.src=URL.createObjectURL(file);img.onload=()=>{setForegroundImage(img);drawImagesOnCanvas()// Redraw immediately after upload\n;};};const getCanvasDimensions=()=>{switch(aspectRatio){case\"16:9\":return{width:1600,height:900};case\"4:3\":return{width:1200,height:900};case\"3:2\":return{width:1200,height:800};case\"1:1\":default:return{width:1e3,height:1e3};}};const drawImagesOnCanvas=()=>{const canvas=canvasRef.current;const{width,height}=getCanvasDimensions();canvas.width=width*scaleFactor;canvas.height=height*scaleFactor;const ctx=canvas.getContext(\"2d\");ctx.clearRect(0,0,canvas.width,canvas.height);if(backgroundImage){ctx.drawImage(backgroundImage,0,0,canvas.width,canvas.height);}if(foregroundImage){const canvasAspect=canvas.width/canvas.height;const imageAspect=foregroundImage.width/foregroundImage.height;let newWidth,newHeight;if(imageAspect>canvasAspect){newWidth=canvas.width*.8*foregroundSize// scale based on slider\n;newHeight=newWidth/imageAspect;}else{newHeight=canvas.height*.8*foregroundSize// scale based on slider\n;newWidth=newHeight*imageAspect;}const x=(canvas.width-newWidth)/2// Centering horizontally\n;const y=(canvas.height-newHeight)/2// Centering vertically\n;ctx.save();if(cornerRadius>0){const scaledRadius=cornerRadius*scaleFactor;ctx.beginPath();ctx.moveTo(x+scaledRadius,y);ctx.lineTo(x+newWidth-scaledRadius,y);ctx.quadraticCurveTo(x+newWidth,y,x+newWidth,y+scaledRadius);ctx.lineTo(x+newWidth,y+newHeight-scaledRadius);ctx.quadraticCurveTo(x+newWidth,y+newHeight,x+newWidth-scaledRadius,y+newHeight);ctx.lineTo(x+scaledRadius,y+newHeight);ctx.quadraticCurveTo(x,y+newHeight,x,y+newHeight-scaledRadius);ctx.lineTo(x,y+scaledRadius);ctx.quadraticCurveTo(x,y,x+scaledRadius,y);ctx.closePath();ctx.clip();}ctx.drawImage(foregroundImage,x,y,newWidth,newHeight);ctx.restore();}};useEffect(()=>{drawImagesOnCanvas();},[backgroundImage,foregroundImage,cornerRadius,foregroundSize,aspectRatio]);const saveImage=()=>{const canvas=canvasRef.current;const dataURL=canvas.toDataURL()// Get the data URL of the canvas\n;// Log the canvas dataURL to verify it's valid\nconsole.log(dataURL);const link=document.createElement(\"a\");link.download=\"exported-image.png\";link.href=dataURL;link.click();};return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:previewContainerStyle,children:[/*#__PURE__*/_jsxs(\"div\",{onClick:()=>inputFileRef.current.click(),style:{width:\"100%\",height:\"auto\",position:\"relative\",cursor:\"pointer\"},children:[/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"auto\",pointerEvents:\"none\"}}),!foregroundImage&&/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyle,children:[/*#__PURE__*/_jsx(\"div\",{style:circleStyle,children:/*#__PURE__*/_jsx(\"span\",{style:plusStyle,children:\"+\"})}),/*#__PURE__*/_jsx(\"div\",{style:textStyle,children:\"Add your image\"})]})]}),/*#__PURE__*/_jsx(\"input\",{type:\"file\",ref:inputFileRef,onChange:handleForegroundUpload,accept:\"image/*\",style:{display:\"none\"}})]}),/*#__PURE__*/_jsxs(\"div\",{style:controlsContainerStyle,children:[/*#__PURE__*/_jsx(\"h2\",{style:headingStyle,children:\"Background\"}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",gap:\"8px\",marginBottom:\"10px\"},children:imageLinks.map((url,index)=>/*#__PURE__*/_jsx(\"div\",{onClick:()=>selectBackgroundImage(index),style:{width:\"42px\",height:\"42px\",backgroundImage:`url(${url})`,backgroundSize:\"cover\",cursor:\"pointer\",border:selectedImageIndex===index?\"2px solid black\":\"0px solid #ddd\",borderRadius:\"8px\",backgroundColor:\"#f1f1f1\"}},index))}),/*#__PURE__*/_jsx(\"div\",{style:fullWidthStyle,children:/*#__PURE__*/_jsxs(\"label\",{style:{...buttonStyle,textAlign:\"center\",backgroundColor:\"#f1f1f1\",color:\"black\",width:\"100%\"},children:[backgroundImage?\"Upload custom\":\"Choose file\",/*#__PURE__*/_jsx(\"input\",{type:\"file\",onChange:handleBackgroundUpload,accept:\"image/*\",style:{display:\"none\"}})]})}),/*#__PURE__*/_jsx(\"h2\",{style:headingStyle,children:\"Properties\"}),/*#__PURE__*/_jsxs(\"div\",{style:fullWidthStyle,children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Corner Radius\"}),/*#__PURE__*/_jsxs(\"div\",{style:sliderContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"0\",max:\"100\",value:cornerRadius,onChange:e=>setCornerRadius(parseInt(e.target.value,10)),style:sliderStyle}),/*#__PURE__*/_jsx(\"span\",{style:valueDisplayStyle,children:cornerRadius})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:fullWidthStyle,children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Foreground Size\"}),/*#__PURE__*/_jsxs(\"div\",{style:sliderContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"range\",min:\"0.5\",max:\"2\",step:\"0.01\",value:foregroundSize,onChange:e=>setForegroundSize(parseFloat(e.target.value)),style:sliderStyle}),/*#__PURE__*/_jsx(\"span\",{style:valueDisplayStyle,children:foregroundSize.toFixed(2)})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:fullWidthStyle,children:[/*#__PURE__*/_jsx(\"label\",{style:labelStyle,children:\"Aspect Ratio\"}),/*#__PURE__*/_jsxs(\"select\",{value:aspectRatio,onChange:e=>setAspectRatio(e.target.value),style:selectStyle,children:[/*#__PURE__*/_jsx(\"option\",{value:\"1:1\",children:\"1:1\"}),/*#__PURE__*/_jsx(\"option\",{value:\"16:9\",children:\"16:9\"}),/*#__PURE__*/_jsx(\"option\",{value:\"4:3\",children:\"4:3\"}),/*#__PURE__*/_jsx(\"option\",{value:\"3:2\",children:\"3:2\"})]})]}),/*#__PURE__*/_jsx(\"button\",{onClick:saveImage,style:buttonStyle,children:\"Save Image\"})]})]});}const containerStyle={display:\"flex\",justifyContent:\"space-between\",padding:\"0px\",fontFamily:\"Inter\",maxWidth:\"1200px\",margin:\"0 auto\",gap:\"32px\",flexDirection:\"row\",flexWrap:\"wrap\"};const previewContainerStyle={flex:\"1 1 auto\",minWidth:0};const controlsContainerStyle={width:\"300px\",flexShrink:0,\"@media (max-width: 600px)\":{width:\"100%\"}};const fullWidthStyle={width:\"100%\",marginBottom:\"20px\"};const placeholderStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",textAlign:\"center\",display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\"};const circleStyle={width:\"60px\",height:\"60px\",borderRadius:\"50%\",border:\"2px dashed #fff\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",marginBottom:\"10px\"};const plusStyle={fontSize:\"24px\",color:\"#fff\",marginBottom:\"4px\"};const textStyle={fontSize:\"16px\",color:\"#fff\",fontFamily:\"Archivo Narrow, sans-serif\"};const sliderContainerStyle={display:\"flex\",alignItems:\"center\",gap:\"10px\"};const sliderStyle={flexGrow:1,appearance:\"none\",height:\"16px\",background:\"#f1f1f1\",outline:\"none\",opacity:\"1\",transition:\"opacity 0.2s\",borderRadius:\"20px\"};const valueDisplayStyle={minWidth:\"40px\",textAlign:\"center\",padding:\"4px 8px\",background:\"#f1f1f1\",borderRadius:\"4px\",fontSize:\"14px\",fontFamily:\"Archivo Narrow, sans-serif\"};const selectStyle={width:\"100%\",padding:\"10px\",border:\"none\",borderRadius:\"8px\",fontSize:\"14px\",fontFamily:\"Archivo Narrow, sans-serif\",background:\"#f1f1f1\"};const buttonStyle={width:\"100%\",padding:\"12px\",backgroundColor:\"black\",color:\"white\",border:\"none\",borderRadius:\"8px\",fontSize:\"18px\",cursor:\"pointer\",transition:\"background-color 0.2s\",marginTop:\"auto\",fontFamily:\"Archivo Narrow, sans-serif\",display:\"inline-block\",textAlign:\"center\",fontWeight:400};const headingStyle={marginBottom:\"8px\",color:\"#333\",fontFamily:\"Archivo Narrow, sans-serif\",fontSize:\"28px\"};const labelStyle={display:\"block\",marginBottom:\"4px\",marginTop:\"16px\",color:\"#555\",fontFamily:\"Archivo Narrow, sans-serif\",fontSize:\"16px\",fontWeight:500};ImageEditor.defaultProps={cornerRadius:28,foregroundSize:1,aspectRatio:\"4:3\"};addPropertyControls(ImageEditor,{cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",min:0,max:100},foregroundSize:{type:ControlType.Number,title:\"Foreground Size\",min:.5,max:2,step:.01},aspectRatio:{type:ControlType.Enum,title:\"Aspect Ratio\",options:[\"1:1\",\"16:9\",\"4:3\",\"3:2\"],optionTitles:[\"1:1\",\"16:9\",\"4:3\",\"3:2\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ImageEditor\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScreenshotEditorMobile.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,LazyValue,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Footer from\"#framer/local/canvasComponent/F5kG9oRDn/F5kG9oRDn.js\";import NEWNavigation from\"#framer/local/canvasComponent/GHjPahKz6/GHjPahKz6.js\";import ImageEditor1 from\"#framer/local/codeFile/AXFiLxh/ScreenshotEditor.js\";import ImageEditor from\"#framer/local/codeFile/GYRG5eQ/ScreenshotEditorMobile.js\";import*as sharedStyle from\"#framer/local/css/lXLNXuzgv/lXLNXuzgv.js\";import*as sharedStyle1 from\"#framer/local/css/WCdIHg5Zq/WCdIHg5Zq.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ts8U9FFH0/Ts8U9FFH0.js\";const NEWNavigationFonts=getFonts(NEWNavigation);const ImageEditorFonts=getFonts(ImageEditor);const ImageEditor1Fonts=getFonts(ImageEditor1);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const YouTubeFonts=getFonts(YouTube);const FooterFonts=getFonts(Footer);const breakpoints={Fe33t_tWl:\"(max-width: 693px)\",Q88mw_uvs:\"(min-width: 1360px)\",wJLDVD7a4:\"(min-width: 694px) and (max-width: 1099px)\",Yr27yE0Iy:\"(min-width: 1100px) and (max-width: 1359px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q43rv\";const variantClassNames={Fe33t_tWl:\"framer-v-159owtr\",Q88mw_uvs:\"framer-v-1g1tyla\",wJLDVD7a4:\"framer-v-1cgi1ih\",Yr27yE0Iy:\"framer-v-1miygwg\"};const valuesByLocaleId={n_Gc1COxB:new LazyValue(()=>import(\"./Ts8U9FFH0-0.js\"))};function preloadLocalizedValues(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}}function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 2\":\"Yr27yE0Iy\",Desktop:\"Q88mw_uvs\",Phone:\"Fe33t_tWl\",Tablet:\"wJLDVD7a4\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Q88mw_uvs\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Q43rv`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Q43rv`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const elementId=useRouteElementId(\"m_jlePlpr\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"MaowQgUPl\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Fe33t_tWl\",\"wJLDVD7a4\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Fe33t_tWl\",\"wJLDVD7a4\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"C3qP5RyK2\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"MU1bXMLYY\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"XcQzQegR6\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34,_getLocalizedValue35,_getLocalizedValue36,_getLocalizedValue37,_getLocalizedValue38,_getLocalizedValue39,_getLocalizedValue40,_getLocalizedValue41,_getLocalizedValue42,_getLocalizedValue43,_getLocalizedValue44,_getLocalizedValue45,_getLocalizedValue46,_getLocalizedValue47;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Q88mw_uvs\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1g1tyla\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2x7qj-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{variant:\"x3GJx6lRw\"}},children:/*#__PURE__*/_jsx(NEWNavigation,{height:\"100%\",id:\"pGEAEehY2\",layoutId:\"pGEAEehY2\",style:{height:\"100%\",width:\"100%\"},variant:\"cptyWqoWF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cgt2m\",\"data-framer-name\":\"Feature-1\",id:elementId,name:\"Feature-1\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163ddfz\",\"data-framer-name\":\"Design no limits\",id:elementId1,name:\"Design no limits\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hx4kjo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uh0uv0\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-optzmo-container hidden-1g1tyla hidden-1miygwg\",children:/*#__PURE__*/_jsx(ImageEditor,{aspectRatio:\"4:3\",cornerRadius:28,foregroundSize:1,height:\"100%\",id:\"OvhVC2ZM1\",layoutId:\"OvhVC2ZM1\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ndur8t-container hidden-159owtr hidden-1cgi1ih\",children:/*#__PURE__*/_jsx(ImageEditor1,{aspectRatio:\"4:3\",cornerRadius:28,foregroundSize:1,height:\"100%\",id:\"Nh7JeFs6t\",layoutId:\"Nh7JeFs6t\",style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cfj36w\",\"data-framer-name\":\"Feature-1\",id:elementId2,name:\"Feature-1\",ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-3zoopy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wfs2cu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hrfzo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-bj2qk\",\"data-styles-preset\":\"lXLNXuzgv\",children:\"Edit screenshot\"})}),className:\"framer-4gds1x\",\"data-framer-name\":\"Prototype faster\",fonts:[\"Inter\"],name:\"Prototype faster\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Generate beautiful sharable images from your screenshots. Add a background image, change the corner radius, and zoom.\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Generate beautiful sharable images from your screenshots. Add a background image, change the corner radius, and zoom.\"})}),className:\"framer-15bucwu\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v6uwgo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(672),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png\",srcSet:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png 1228w\"}},wJLDVD7a4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(713),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png\",srcSet:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png 1228w\"}},Yr27yE0Iy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(734),pixelHeight:936,pixelWidth:1228,sizes:\"max((100vw - 120px) / 2, 1px)\",src:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png\",srcSet:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png 1228w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(756),pixelHeight:936,pixelWidth:1228,sizes:\"504px\",src:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png\",srcSet:\"https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=512 512w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xPFp19zs0Om23bHEg0bm1biF2c.png 1228w\"},className:\"framer-128cws1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-doaljf\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1if2msa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Add background\"})})},wJLDVD7a4:{children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Add background\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\"},children:\"Add background\"})}),className:\"framer-1vzhnwz\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Select from hand-picked abstract background images that will make your screenshot look more professional. Or upload your own background!\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Select from hand-picked abstract background images that will make your screenshot look more professional. Or upload your own background!\"})}),className:\"framer-palvcw\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rzkimg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-36hqit\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fs7vuh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Zoom and change corners\"})})},wJLDVD7a4:{children:(_getLocalizedValue9=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Zoom and change corners\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\"},children:\"Zoom and change corners\"})}),className:\"framer-1y402yd\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue11=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Modify the screenshot by changing the size, and radius of the corners.\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Modify the screenshot by changing the size, and radius of the corners.\"})}),className:\"framer-1yfl6kd\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1176.8076256499135),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png\",srcSet:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png 1228w\"}},wJLDVD7a4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1255.8076256499135),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png\",srcSet:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png 1228w\"}},Yr27yE0Iy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1164),pixelHeight:936,pixelWidth:1228,sizes:\"max((100vw - 120px) / 2, 1px)\",src:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png\",srcSet:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png 1228w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1170),pixelHeight:936,pixelWidth:1228,sizes:\"504px\",src:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png\",srcSet:\"https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=512 512w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gQo7nRJ7RTLXMm5VjofRaCHcY0.png 1228w\"},className:\"framer-slar0x\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f8zp0u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1681.6152512998267),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png\",srcSet:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png 1228w\"}},wJLDVD7a4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1798.6152512998267),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png\",srcSet:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png 1228w\"}},Yr27yE0Iy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1594),pixelHeight:936,pixelWidth:1228,sizes:\"max((100vw - 120px) / 2, 1px)\",src:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png\",srcSet:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png 1228w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1584),pixelHeight:936,pixelWidth:1228,sizes:\"504px\",src:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png\",srcSet:\"https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCUZpZFfjYY35jjaPeLhcRpU9M.png 1228w\"},className:\"framer-1vqhhnu\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kg9jim\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xnbohi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue13=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Add window frame\"})})},wJLDVD7a4:{children:(_getLocalizedValue14=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Add window frame\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\"},children:\"Add window frame\"})}),className:\"framer-zlbxw9\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue16=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Make the image look like a real screenshot by adding a window or browser frame.\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Make the image look like a real screenshot by adding a window or browser frame.\"})}),className:\"framer-2obylm\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0ter2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yck3fp\",\"data-framer-name\":\"Post\",name:\"Post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12s6nwl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue18=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Export in a desired aspect ratio\"})})},wJLDVD7a4:{children:(_getLocalizedValue19=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"Export in a desired aspect ratio\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\"},children:\"Export in a desired aspect ratio\"})}),className:\"framer-dxg6va\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue21=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Select from different aspect ratios, from 1:1 square to common 16:9 screen size.\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Select from different aspect ratios, from 1:1 square to common 16:9 screen size.\"})}),className:\"framer-fl5u27\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(2186.42287694974),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png\",srcSet:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png 1228w\"}},wJLDVD7a4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(2573.42287694974),pixelHeight:936,pixelWidth:1228,sizes:\"calc(100vw - 48px)\",src:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png\",srcSet:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png 1228w\"}},Yr27yE0Iy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(2024),pixelHeight:936,pixelWidth:1228,sizes:\"max((100vw - 120px) / 2, 1px)\",src:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png\",srcSet:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png 1228w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:1428,loading:getLoadingLazyAtYPosition(1998),pixelHeight:936,pixelWidth:1228,sizes:\"504px\",src:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png\",srcSet:\"https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/p5BGZkqM3HCniOeWJ9zvJ8xgCbg.png 1228w\"},className:\"framer-18cv1e0\"})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxbxq8\",\"data-framer-name\":\"Feature-1\",id:elementId3,name:\"Feature-1\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cl4wto\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qie988\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue23=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Looking for more background images?\"})})},wJLDVD7a4:{children:(_getLocalizedValue24=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\"},children:\"Looking for more background images?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue25=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:\"Looking for more background images?\"})}),className:\"framer-1cbzsw7\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue26=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\"},children:\"Find backgrounds that matche your screenshot on the free stock image website Unsplash and upload it to our tool on top.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue27=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\"},children:\"Find backgrounds that matche your screenshot on the free stock image website Unsplash and upload it to our tool on top.\"})}),className:\"framer-1pn3hua\",\"data-framer-name\":\"Title\",fonts:[\"GF;Inter-regular\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://unsplash.com/s/collections/abstract-background\",nodeId:\"ihIMWEQiD\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-16pk6sx framer-18ri8e8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue28=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Open Unsplash\"})}),className:\"framer-j3v8xf\",\"data-framer-name\":\"Date\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1244,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(3121.2305025996534),pixelHeight:1558,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:\"610px\",src:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png\",srcSet:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png 2528w\"}},wJLDVD7a4:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1244,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(3336.2305025996534),pixelHeight:1558,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:\"610px\",src:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png\",srcSet:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png 2528w\"}},Yr27yE0Iy:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1244,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(3012),pixelHeight:1558,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 80px, 1200px)\",src:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png\",srcSet:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png 2528w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"stretch\",intrinsicHeight:1244,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition(2986),pixelHeight:1558,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 80px, 1200px)\",src:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png\",srcSet:\"https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FubbR7WiQR70q0TWXZlV6Uuiw.png 2528w\"},className:\"framer-1y4q572\",\"data-framer-appear-id\":\"1y4q572\",\"data-framer-name\":\"Hero-Image\",initial:animation1,name:\"Hero-Image\",optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y5bisi\",\"data-framer-name\":\"Feature-1\",id:elementId4,name:\"Feature-1\",ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oqgssv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rzj8ku\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-auwlao\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ogn1qk-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"mmNKxJkAK\",isMixedBorderRadius:false,isRed:true,layoutId:\"mmNKxJkAK\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:(_getLocalizedValue29=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:\"https://www.youtube.com/watch?v=X5Oq2_YXV6s\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txgn3i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j1bmo\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue30=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\"},children:\"What is a screenshot?\"})})},wJLDVD7a4:{children:(_getLocalizedValue31=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\"},children:\"What is a screenshot?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue32=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"left\"},children:\"What is a screenshot?\"})}),className:\"framer-1hv1dqq\",\"data-framer-name\":\"Title\",fonts:[\"GF;Pragati Narrow-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue33=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"The screenshot is a picture of what is happening on your computer screen. \"})}),fonts:[\"GF;Inter-regular\"]},wJLDVD7a4:{children:(_getLocalizedValue34=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"The screenshot is a picture of what is happening on your computer screen. \"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue35=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue35!==void 0?_getLocalizedValue35:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"The screenshot is a picture of what is happening on your computer screen. \"})}),className:\"framer-uc6kk8\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hsu7r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jy48v3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue36=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue36!==void 0?_getLocalizedValue36:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"How to take screenshots on PC?\"})}),className:\"framer-1dv29fi\",fonts:[\"GF;Pragati Narrow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue37=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue37!==void 0?_getLocalizedValue37:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=jTTcGIzeJwA\",nodeId:\"gz9Mj9VDF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 30-second\"})}),\" video explaining how to use the print-screen button and build-in screenshot capture tools.\"]})})},wJLDVD7a4:{children:(_getLocalizedValue38=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue38!==void 0?_getLocalizedValue38:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=jTTcGIzeJwA\",nodeId:\"gz9Mj9VDF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 30-second\"})}),\" video explaining how to use the print-screen button and build-in screenshot capture tools.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue39=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue39!==void 0?_getLocalizedValue39:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=jTTcGIzeJwA\",nodeId:\"gz9Mj9VDF\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 30-second\"})}),\" video explaining how to use the print-screen button and build-in screenshot capture tools.\"]})}),className:\"framer-4inqho\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rlprja\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue40=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue40!==void 0?_getLocalizedValue40:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"How to take screenshots on Mac?\"})}),className:\"framer-sz39jm\",fonts:[\"GF;Pragati Narrow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue41=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue41!==void 0?_getLocalizedValue41:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=X5Oq2_YXV6s\",nodeId:\"bxJ9X1Mq0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 1-minute\"})}),\" tutorial on how to use Mac OS system screen capture tools.\"]})})},wJLDVD7a4:{children:(_getLocalizedValue42=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue42!==void 0?_getLocalizedValue42:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=X5Oq2_YXV6s\",nodeId:\"bxJ9X1Mq0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 1-minute\"})}),\" tutorial on how to use Mac OS system screen capture tools.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue43=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue43!==void 0?_getLocalizedValue43:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:[\"Here's a \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=X5Oq2_YXV6s\",nodeId:\"bxJ9X1Mq0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-e61kjm\",\"data-styles-preset\":\"WCdIHg5Zq\",children:\"quick 1-minute\"})}),\" tutorial on how to use Mac OS system screen capture tools.\"]})}),className:\"framer-1pbzpyg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-auyq4d\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue44=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue44!==void 0?_getLocalizedValue44:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UHJhZ2F0aSBOYXJyb3ctNzAw\",\"--framer-font-family\":'\"Pragati Narrow\", \"Pragati Narrow Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"left\"},children:\"How to edit the screenshot?\"})}),className:\"framer-9v2s7s\",fonts:[\"GF;Pragati Narrow-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{children:(_getLocalizedValue45=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue45!==void 0?_getLocalizedValue45:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Use our mini tool to add beautiful background images or modify your screenshot to make it prettier.\"})}),fonts:[\"GF;Inter-regular\"]},wJLDVD7a4:{children:(_getLocalizedValue46=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue46!==void 0?_getLocalizedValue46:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"left\"},children:\"Use our mini tool to add beautiful background images or modify your screenshot to make it prettier.\"})}),fonts:[\"GF;Inter-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue47=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue47!==void 0?_getLocalizedValue47:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\"},children:\"Use our mini tool to add beautiful background images or modify your screenshot to make it prettier.\"})}),className:\"framer-1xw46yp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{y:4976.730502599654},wJLDVD7a4:{y:5279.730502599654},Yr27yE0Iy:{y:5047}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:696,width:\"100vw\",y:5120.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gs7q88-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Fe33t_tWl:{variant:\"fZ9JVuZdw\"},wJLDVD7a4:{variant:\"fZ9JVuZdw\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KzmHxXfeR\",layoutId:\"KzmHxXfeR\",style:{width:\"100%\"},variant:\"ujkIURGNy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Q43rv { background: rgb(255, 255, 255); }`,\".framer-Q43rv.framer-18ri8e8, .framer-Q43rv .framer-18ri8e8 { display: block; }\",\".framer-Q43rv.framer-1g1tyla { 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: auto; padding: 0px; position: relative; width: 1360px; }\",\".framer-Q43rv .framer-k2x7qj-container { flex: none; height: 60px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Q43rv .framer-1cgt2m { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-163ddfz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 116px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-hx4kjo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1024px; }\",\".framer-Q43rv .framer-uh0uv0 { 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: sticky; top: 0px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-Q43rv .framer-optzmo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q43rv .framer-ndur8t-container { flex: none; height: auto; position: relative; width: 1048px; }\",\".framer-Q43rv .framer-1cfj36w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-3zoopy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1048px; }\",\".framer-Q43rv .framer-1wfs2cu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-4hrfzo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 110px 530px 30px 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-4gds1x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q43rv .framer-15bucwu, .framer-Q43rv .framer-palvcw, .framer-Q43rv .framer-1yfl6kd, .framer-Q43rv .framer-2obylm, .framer-Q43rv .framer-fl5u27, .framer-Q43rv .framer-uc6kk8, .framer-Q43rv .framer-4inqho, .framer-Q43rv .framer-1pbzpyg, .framer-Q43rv .framer-1xw46yp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-1q0ter2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-128cws1, .framer-Q43rv .framer-slar0x, .framer-Q43rv .framer-1vqhhnu, .framer-Q43rv .framer-18cv1e0 { aspect-ratio: 1.36 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 147px); position: relative; width: 1px; }\",\".framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-36hqit, .framer-Q43rv .framer-kg9jim, .framer-Q43rv .framer-yck3fp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-Q43rv .framer-1if2msa, .framer-Q43rv .framer-fs7vuh, .framer-Q43rv .framer-1xnbohi, .framer-Q43rv .framer-12s6nwl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1vzhnwz, .framer-Q43rv .framer-1y402yd, .framer-Q43rv .framer-zlbxw9, .framer-Q43rv .framer-dxg6va, .framer-Q43rv .framer-1cbzsw7, .framer-Q43rv .framer-1hv1dqq, .framer-Q43rv .framer-1dv29fi, .framer-Q43rv .framer-sz39jm, .framer-Q43rv .framer-9v2s7s { --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-Q43rv .framer-kxbxq8 { align-content: center; align-items: center; background-color: #e5e5ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 128px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1cl4wto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 465px; }\",\".framer-Q43rv .framer-qie988 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1pn3hua { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 426px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q43rv .framer-16pk6sx { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 24px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q43rv .framer-j3v8xf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q43rv .framer-1y4q572 { -webkit-filter: drop-shadow(0px 12px 27px rgba(0, 0, 0, 0.12)); aspect-ratio: 1.655580192165558 / 1; filter: drop-shadow(0px 12px 27px rgba(0, 0, 0, 0.12)); flex: none; height: var(--framer-aspect-ratio-supported, 121px); max-width: 1200px; overflow: visible; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1y5bisi { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 156px 0px 156px 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1oqgssv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Q43rv .framer-rzj8ku, .framer-Q43rv .framer-1txgn3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Q43rv .framer-auwlao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 476px; }\",\".framer-Q43rv .framer-ogn1qk-container { flex: none; height: 270px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-1j1bmo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 476px; }\",\".framer-Q43rv .framer-4hsu7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 476px; }\",\".framer-Q43rv .framer-jy48v3, .framer-Q43rv .framer-1rlprja, .framer-Q43rv .framer-auyq4d { --border-bottom-width: 0px; --border-color: rgba(33, 33, 33, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Q43rv .framer-gs7q88-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q43rv.framer-1g1tyla, .framer-Q43rv .framer-1cgt2m, .framer-Q43rv .framer-163ddfz, .framer-Q43rv .framer-hx4kjo, .framer-Q43rv .framer-uh0uv0, .framer-Q43rv .framer-1cfj36w, .framer-Q43rv .framer-3zoopy, .framer-Q43rv .framer-1wfs2cu, .framer-Q43rv .framer-4hrfzo, .framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-1if2msa, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-36hqit, .framer-Q43rv .framer-fs7vuh, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-kg9jim, .framer-Q43rv .framer-1xnbohi, .framer-Q43rv .framer-1q0ter2, .framer-Q43rv .framer-yck3fp, .framer-Q43rv .framer-12s6nwl, .framer-Q43rv .framer-kxbxq8, .framer-Q43rv .framer-1cl4wto, .framer-Q43rv .framer-qie988, .framer-Q43rv .framer-16pk6sx, .framer-Q43rv .framer-1y5bisi, .framer-Q43rv .framer-1oqgssv, .framer-Q43rv .framer-rzj8ku, .framer-Q43rv .framer-auwlao, .framer-Q43rv .framer-1txgn3i, .framer-Q43rv .framer-1j1bmo, .framer-Q43rv .framer-4hsu7r, .framer-Q43rv .framer-jy48v3, .framer-Q43rv .framer-1rlprja, .framer-Q43rv .framer-auyq4d { gap: 0px; } .framer-Q43rv.framer-1g1tyla > *, .framer-Q43rv .framer-1cgt2m > *, .framer-Q43rv .framer-163ddfz > *, .framer-Q43rv .framer-1cfj36w > *, .framer-Q43rv .framer-1y5bisi > *, .framer-Q43rv .framer-4hsu7r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q43rv.framer-1g1tyla > :first-child, .framer-Q43rv .framer-1cgt2m > :first-child, .framer-Q43rv .framer-163ddfz > :first-child, .framer-Q43rv .framer-uh0uv0 > :first-child, .framer-Q43rv .framer-1cfj36w > :first-child, .framer-Q43rv .framer-3zoopy > :first-child, .framer-Q43rv .framer-1wfs2cu > :first-child, .framer-Q43rv .framer-4hrfzo > :first-child, .framer-Q43rv .framer-doaljf > :first-child, .framer-Q43rv .framer-1if2msa > :first-child, .framer-Q43rv .framer-36hqit > :first-child, .framer-Q43rv .framer-fs7vuh > :first-child, .framer-Q43rv .framer-kg9jim > :first-child, .framer-Q43rv .framer-1xnbohi > :first-child, .framer-Q43rv .framer-yck3fp > :first-child, .framer-Q43rv .framer-12s6nwl > :first-child, .framer-Q43rv .framer-kxbxq8 > :first-child, .framer-Q43rv .framer-1cl4wto > :first-child, .framer-Q43rv .framer-qie988 > :first-child, .framer-Q43rv .framer-1y5bisi > :first-child, .framer-Q43rv .framer-rzj8ku > :first-child, .framer-Q43rv .framer-auwlao > :first-child, .framer-Q43rv .framer-1txgn3i > :first-child, .framer-Q43rv .framer-1j1bmo > :first-child, .framer-Q43rv .framer-4hsu7r > :first-child, .framer-Q43rv .framer-jy48v3 > :first-child, .framer-Q43rv .framer-1rlprja > :first-child, .framer-Q43rv .framer-auyq4d > :first-child { margin-top: 0px; } .framer-Q43rv.framer-1g1tyla > :last-child, .framer-Q43rv .framer-1cgt2m > :last-child, .framer-Q43rv .framer-163ddfz > :last-child, .framer-Q43rv .framer-uh0uv0 > :last-child, .framer-Q43rv .framer-1cfj36w > :last-child, .framer-Q43rv .framer-3zoopy > :last-child, .framer-Q43rv .framer-1wfs2cu > :last-child, .framer-Q43rv .framer-4hrfzo > :last-child, .framer-Q43rv .framer-doaljf > :last-child, .framer-Q43rv .framer-1if2msa > :last-child, .framer-Q43rv .framer-36hqit > :last-child, .framer-Q43rv .framer-fs7vuh > :last-child, .framer-Q43rv .framer-kg9jim > :last-child, .framer-Q43rv .framer-1xnbohi > :last-child, .framer-Q43rv .framer-yck3fp > :last-child, .framer-Q43rv .framer-12s6nwl > :last-child, .framer-Q43rv .framer-kxbxq8 > :last-child, .framer-Q43rv .framer-1cl4wto > :last-child, .framer-Q43rv .framer-qie988 > :last-child, .framer-Q43rv .framer-1y5bisi > :last-child, .framer-Q43rv .framer-rzj8ku > :last-child, .framer-Q43rv .framer-auwlao > :last-child, .framer-Q43rv .framer-1txgn3i > :last-child, .framer-Q43rv .framer-1j1bmo > :last-child, .framer-Q43rv .framer-4hsu7r > :last-child, .framer-Q43rv .framer-jy48v3 > :last-child, .framer-Q43rv .framer-1rlprja > :last-child, .framer-Q43rv .framer-auyq4d > :last-child { margin-bottom: 0px; } .framer-Q43rv .framer-hx4kjo > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Q43rv .framer-hx4kjo > :first-child, .framer-Q43rv .framer-v6uwgo > :first-child, .framer-Q43rv .framer-rzkimg > :first-child, .framer-Q43rv .framer-f8zp0u > :first-child, .framer-Q43rv .framer-1q0ter2 > :first-child, .framer-Q43rv .framer-16pk6sx > :first-child, .framer-Q43rv .framer-1oqgssv > :first-child { margin-left: 0px; } .framer-Q43rv .framer-hx4kjo > :last-child, .framer-Q43rv .framer-v6uwgo > :last-child, .framer-Q43rv .framer-rzkimg > :last-child, .framer-Q43rv .framer-f8zp0u > :last-child, .framer-Q43rv .framer-1q0ter2 > :last-child, .framer-Q43rv .framer-16pk6sx > :last-child, .framer-Q43rv .framer-1oqgssv > :last-child { margin-right: 0px; } .framer-Q43rv .framer-uh0uv0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q43rv .framer-3zoopy > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-Q43rv .framer-1wfs2cu > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Q43rv .framer-4hrfzo > *, .framer-Q43rv .framer-qie988 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q43rv .framer-v6uwgo > *, .framer-Q43rv .framer-rzkimg > *, .framer-Q43rv .framer-f8zp0u > *, .framer-Q43rv .framer-1q0ter2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q43rv .framer-doaljf > *, .framer-Q43rv .framer-36hqit > *, .framer-Q43rv .framer-kg9jim > *, .framer-Q43rv .framer-yck3fp > *, .framer-Q43rv .framer-1cl4wto > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q43rv .framer-1if2msa > *, .framer-Q43rv .framer-fs7vuh > *, .framer-Q43rv .framer-1xnbohi > *, .framer-Q43rv .framer-12s6nwl > *, .framer-Q43rv .framer-jy48v3 > *, .framer-Q43rv .framer-1rlprja > *, .framer-Q43rv .framer-auyq4d > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Q43rv .framer-kxbxq8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Q43rv .framer-16pk6sx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q43rv .framer-1oqgssv > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-Q43rv .framer-rzj8ku > *, .framer-Q43rv .framer-auwlao > *, .framer-Q43rv .framer-1txgn3i > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q43rv .framer-1j1bmo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",`@media (min-width: 1100px) and (max-width: 1359px) { .${metadata.bodyClassName}-framer-Q43rv { background: rgb(255, 255, 255); } .framer-Q43rv.framer-1g1tyla { width: 1100px; } .framer-Q43rv .framer-163ddfz { padding: 108px 0px 0px 0px; } .framer-Q43rv .framer-hx4kjo { gap: 66px; padding: 0px 40px 0px 40px; width: 100%; } .framer-Q43rv .framer-uh0uv0, .framer-Q43rv .framer-rzj8ku { flex: 1 0 0px; width: 1px; } .framer-Q43rv .framer-ndur8t-container, .framer-Q43rv .framer-3zoopy, .framer-Q43rv .framer-auwlao, .framer-Q43rv .framer-1j1bmo, .framer-Q43rv .framer-4hsu7r { width: 100%; } .framer-Q43rv .framer-1cfj36w { padding: 0px 40px 140px 40px; } .framer-Q43rv .framer-1wfs2cu { gap: 80px; justify-content: flex-start; } .framer-Q43rv .framer-4hrfzo { padding: 110px 530px 0px 0px; } .framer-Q43rv .framer-128cws1, .framer-Q43rv .framer-slar0x, .framer-Q43rv .framer-1vqhhnu, .framer-Q43rv .framer-18cv1e0 { aspect-ratio: 1.329608938547486 / 1; height: var(--framer-aspect-ratio-supported, 150px); } .framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-36hqit, .framer-Q43rv .framer-kg9jim, .framer-Q43rv .framer-yck3fp { gap: 28px; } .framer-Q43rv .framer-1y4q572 { aspect-ratio: 1.6360485268630849 / 1; height: var(--framer-aspect-ratio-supported, 122px); } .framer-Q43rv .framer-1y5bisi { padding: 156px 40px 156px 40px; } .framer-Q43rv .framer-1oqgssv { gap: 64px; width: 100%; } .framer-Q43rv .framer-1txgn3i { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; width: 1px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q43rv .framer-hx4kjo, .framer-Q43rv .framer-1wfs2cu, .framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-36hqit, .framer-Q43rv .framer-kg9jim, .framer-Q43rv .framer-yck3fp, .framer-Q43rv .framer-1oqgssv { gap: 0px; } .framer-Q43rv .framer-hx4kjo > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-Q43rv .framer-hx4kjo > :first-child, .framer-Q43rv .framer-1oqgssv > :first-child { margin-left: 0px; } .framer-Q43rv .framer-hx4kjo > :last-child, .framer-Q43rv .framer-1oqgssv > :last-child { margin-right: 0px; } .framer-Q43rv .framer-1wfs2cu > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Q43rv .framer-1wfs2cu > :first-child, .framer-Q43rv .framer-doaljf > :first-child, .framer-Q43rv .framer-36hqit > :first-child, .framer-Q43rv .framer-kg9jim > :first-child, .framer-Q43rv .framer-yck3fp > :first-child { margin-top: 0px; } .framer-Q43rv .framer-1wfs2cu > :last-child, .framer-Q43rv .framer-doaljf > :last-child, .framer-Q43rv .framer-36hqit > :last-child, .framer-Q43rv .framer-kg9jim > :last-child, .framer-Q43rv .framer-yck3fp > :last-child { margin-bottom: 0px; } .framer-Q43rv .framer-doaljf > *, .framer-Q43rv .framer-36hqit > *, .framer-Q43rv .framer-kg9jim > *, .framer-Q43rv .framer-yck3fp > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Q43rv .framer-1oqgssv > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }}`,`@media (max-width: 693px) { .${metadata.bodyClassName}-framer-Q43rv { background: rgb(255, 255, 255); } .framer-Q43rv.framer-1g1tyla { width: 376px; } .framer-Q43rv .framer-k2x7qj-container { order: 2; } .framer-Q43rv .framer-1cgt2m { gap: 40px; order: 0; } .framer-Q43rv .framer-163ddfz { padding: 106px 0px 0px 0px; } .framer-Q43rv .framer-hx4kjo { flex-direction: column; gap: 56px; order: 0; width: 100%; } .framer-Q43rv .framer-uh0uv0 { order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-Q43rv .framer-optzmo-container { order: 0; } .framer-Q43rv .framer-1cfj36w { order: 1; padding: 88px 24px 88px 24px; } .framer-Q43rv .framer-3zoopy { gap: 40px; width: 100%; } .framer-Q43rv .framer-1wfs2cu { gap: 72px; justify-content: flex-start; } .framer-Q43rv .framer-4hrfzo { justify-content: flex-start; padding: 0px; width: 328px; } .framer-Q43rv .framer-15bucwu, .framer-Q43rv .framer-palvcw, .framer-Q43rv .framer-1yfl6kd, .framer-Q43rv .framer-2obylm, .framer-Q43rv .framer-fl5u27, .framer-Q43rv .framer-uc6kk8, .framer-Q43rv .framer-4inqho, .framer-Q43rv .framer-1pbzpyg, .framer-Q43rv .framer-1xw46yp { --framer-paragraph-spacing: 0px; } .framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-1q0ter2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; } .framer-Q43rv .framer-128cws1, .framer-Q43rv .framer-1vqhhnu { aspect-ratio: 1.329004329004329 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); width: 100%; } .framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-kg9jim { flex: none; width: 100%; } .framer-Q43rv .framer-36hqit, .framer-Q43rv .framer-yck3fp { flex: none; order: 1; width: 100%; } .framer-Q43rv .framer-slar0x, .framer-Q43rv .framer-18cv1e0 { aspect-ratio: 1.329004329004329 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); order: 0; width: 100%; } .framer-Q43rv .framer-kxbxq8 { order: 2; overflow: hidden; padding: 88px 24px 0px 24px; } .framer-Q43rv .framer-1cl4wto, .framer-Q43rv .framer-1pn3hua, .framer-Q43rv .framer-rzj8ku, .framer-Q43rv .framer-auwlao, .framer-Q43rv .framer-1txgn3i, .framer-Q43rv .framer-1j1bmo, .framer-Q43rv .framer-4hsu7r { width: 100%; } .framer-Q43rv .framer-1y4q572 { -webkit-filter: unset; aspect-ratio: 1.5823605706874189 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; filter: unset; height: var(--framer-aspect-ratio-supported, 386px); width: 610px; } .framer-Q43rv .framer-1y5bisi { order: 3; padding: 88px 24px 88px 24px; } .framer-Q43rv .framer-1oqgssv { flex-direction: column; gap: 32px; padding: 0px; width: 100%; } .framer-Q43rv .framer-gs7q88-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q43rv .framer-1cgt2m, .framer-Q43rv .framer-hx4kjo, .framer-Q43rv .framer-3zoopy, .framer-Q43rv .framer-1wfs2cu, .framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-1q0ter2, .framer-Q43rv .framer-1oqgssv { gap: 0px; } .framer-Q43rv .framer-1cgt2m > *, .framer-Q43rv .framer-3zoopy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q43rv .framer-1cgt2m > :first-child, .framer-Q43rv .framer-hx4kjo > :first-child, .framer-Q43rv .framer-3zoopy > :first-child, .framer-Q43rv .framer-1wfs2cu > :first-child, .framer-Q43rv .framer-v6uwgo > :first-child, .framer-Q43rv .framer-rzkimg > :first-child, .framer-Q43rv .framer-f8zp0u > :first-child, .framer-Q43rv .framer-1q0ter2 > :first-child, .framer-Q43rv .framer-1oqgssv > :first-child { margin-top: 0px; } .framer-Q43rv .framer-1cgt2m > :last-child, .framer-Q43rv .framer-hx4kjo > :last-child, .framer-Q43rv .framer-3zoopy > :last-child, .framer-Q43rv .framer-1wfs2cu > :last-child, .framer-Q43rv .framer-v6uwgo > :last-child, .framer-Q43rv .framer-rzkimg > :last-child, .framer-Q43rv .framer-f8zp0u > :last-child, .framer-Q43rv .framer-1q0ter2 > :last-child, .framer-Q43rv .framer-1oqgssv > :last-child { margin-bottom: 0px; } .framer-Q43rv .framer-hx4kjo > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-Q43rv .framer-1wfs2cu > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-Q43rv .framer-v6uwgo > *, .framer-Q43rv .framer-rzkimg > *, .framer-Q43rv .framer-f8zp0u > *, .framer-Q43rv .framer-1q0ter2 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Q43rv .framer-1oqgssv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,`@media (min-width: 694px) and (max-width: 1099px) { .${metadata.bodyClassName}-framer-Q43rv { background: rgb(255, 255, 255); } .framer-Q43rv.framer-1g1tyla { width: 694px; } .framer-Q43rv .framer-k2x7qj-container { order: 2; } .framer-Q43rv .framer-1cgt2m { order: 0; } .framer-Q43rv .framer-163ddfz { padding: 109px 0px 0px 0px; } .framer-Q43rv .framer-hx4kjo { flex-direction: column; gap: 16px; padding: 0px 32px 0px 32px; width: 100%; } .framer-Q43rv .framer-uh0uv0 { order: 0; width: 100%; } .framer-Q43rv .framer-1cfj36w, .framer-Q43rv .framer-1y5bisi { padding: 88px 24px 88px 24px; } .framer-Q43rv .framer-3zoopy { gap: 40px; width: 100%; } .framer-Q43rv .framer-1wfs2cu { gap: 80px; justify-content: flex-start; } .framer-Q43rv .framer-4hrfzo { padding: 0px 150px 0px 0px; } .framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-1q0ter2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; } .framer-Q43rv .framer-128cws1, .framer-Q43rv .framer-1vqhhnu, .framer-Q43rv .framer-18cv1e0 { aspect-ratio: 1.329004329004329 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); width: 100%; } .framer-Q43rv .framer-doaljf, .framer-Q43rv .framer-kg9jim, .framer-Q43rv .framer-yck3fp { flex: none; width: 100%; } .framer-Q43rv .framer-36hqit { flex: none; order: 1; width: 100%; } .framer-Q43rv .framer-slar0x { aspect-ratio: 1.329004329004329 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); order: 0; width: 100%; } .framer-Q43rv .framer-kxbxq8 { align-content: flex-end; align-items: flex-end; overflow: hidden; padding: 88px 24px 88px 24px; } .framer-Q43rv .framer-1cl4wto, .framer-Q43rv .framer-rzj8ku, .framer-Q43rv .framer-auwlao, .framer-Q43rv .framer-1txgn3i, .framer-Q43rv .framer-1j1bmo, .framer-Q43rv .framer-4hsu7r { width: 100%; } .framer-Q43rv .framer-1pn3hua { --framer-paragraph-spacing: unset; width: 100%; } .framer-Q43rv .framer-1y4q572 { -webkit-filter: unset; aspect-ratio: 1.5823605706874189 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 12px 62px 0px rgba(0, 0, 0, 0.12); filter: unset; height: var(--framer-aspect-ratio-supported, 386px); width: 610px; } .framer-Q43rv .framer-1oqgssv { flex-direction: column; gap: 32px; padding: 0px; width: 100%; } .framer-Q43rv .framer-uc6kk8, .framer-Q43rv .framer-4inqho, .framer-Q43rv .framer-1pbzpyg, .framer-Q43rv .framer-1xw46yp { --framer-paragraph-spacing: 0px; } .framer-Q43rv .framer-gs7q88-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q43rv .framer-hx4kjo, .framer-Q43rv .framer-3zoopy, .framer-Q43rv .framer-1wfs2cu, .framer-Q43rv .framer-v6uwgo, .framer-Q43rv .framer-rzkimg, .framer-Q43rv .framer-f8zp0u, .framer-Q43rv .framer-1q0ter2, .framer-Q43rv .framer-1oqgssv { gap: 0px; } .framer-Q43rv .framer-hx4kjo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q43rv .framer-hx4kjo > :first-child, .framer-Q43rv .framer-3zoopy > :first-child, .framer-Q43rv .framer-1wfs2cu > :first-child, .framer-Q43rv .framer-v6uwgo > :first-child, .framer-Q43rv .framer-rzkimg > :first-child, .framer-Q43rv .framer-f8zp0u > :first-child, .framer-Q43rv .framer-1q0ter2 > :first-child, .framer-Q43rv .framer-1oqgssv > :first-child { margin-top: 0px; } .framer-Q43rv .framer-hx4kjo > :last-child, .framer-Q43rv .framer-3zoopy > :last-child, .framer-Q43rv .framer-1wfs2cu > :last-child, .framer-Q43rv .framer-v6uwgo > :last-child, .framer-Q43rv .framer-rzkimg > :last-child, .framer-Q43rv .framer-f8zp0u > :last-child, .framer-Q43rv .framer-1q0ter2 > :last-child, .framer-Q43rv .framer-1oqgssv > :last-child { margin-bottom: 0px; } .framer-Q43rv .framer-3zoopy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q43rv .framer-1wfs2cu > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Q43rv .framer-v6uwgo > *, .framer-Q43rv .framer-rzkimg > *, .framer-Q43rv .framer-f8zp0u > *, .framer-Q43rv .framer-1q0ter2 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Q43rv .framer-1oqgssv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-Q43rv[data-border=\"true\"]::after, .framer-Q43rv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5881\n * @framerIntrinsicWidth 1360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Yr27yE0Iy\":{\"layout\":[\"fixed\",\"auto\"]},\"Fe33t_tWl\":{\"layout\":[\"fixed\",\"auto\"]},\"wJLDVD7a4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerTs8U9FFH0=withCSS(Component,css,\"framer-Q43rv\");export default FramerTs8U9FFH0;FramerTs8U9FFH0.displayName=\"Tool / Color Wheel\";FramerTs8U9FFH0.defaultProps={height:5881,width:1360};addFonts(FramerTs8U9FFH0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Pragati Narrow\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd6GJMTlo_4.woff2\",weight:\"700\"}]},...NEWNavigationFonts,...ImageEditorFonts,...ImageEditor1Fonts,...YouTubeFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTs8U9FFH0\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5881\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yr27yE0Iy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fe33t_tWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wJLDVD7a4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1360\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["imageLinks", "fullSizeLinks", "ImageEditor", "props", "backgroundImage", "setBackgroundImage", "ye", "foregroundImage", "setForegroundImage", "cornerRadius", "setCornerRadius", "foregroundSize", "setForegroundSize", "aspectRatio", "setAspectRatio", "selectedImageIndex", "setSelectedImageIndex", "canvasRef", "pe", "inputFileRef", "scaleFactor", "ue", "img", "selectBackgroundImage", "index", "drawImagesOnCanvas", "handleBackgroundUpload", "event", "file", "handleForegroundUpload", "getCanvasDimensions", "canvas", "width", "height", "ctx", "canvasAspect", "imageAspect", "newWidth", "newHeight", "x", "y", "scaledRadius", "saveImage", "dataURL", "link", "u", "p", "placeholderStyle", "circleStyle", "plusStyle", "textStyle", "headingStyleFirst", "url", "buttonStyle", "headingStyle", "labelStyle", "sliderContainerStyle", "sliderStyle", "valueDisplayStyle", "selectStyle", "addPropertyControls", "ControlType", "imageLinks", "fullSizeLinks", "ImageEditor", "props", "backgroundImage", "setBackgroundImage", "ye", "foregroundImage", "setForegroundImage", "cornerRadius", "setCornerRadius", "foregroundSize", "setForegroundSize", "aspectRatio", "setAspectRatio", "selectedImageIndex", "setSelectedImageIndex", "canvasRef", "pe", "inputFileRef", "scaleFactor", "ue", "img", "selectBackgroundImage", "index", "drawImagesOnCanvas", "handleBackgroundUpload", "event", "file", "handleForegroundUpload", "getCanvasDimensions", "canvas", "width", "height", "ctx", "canvasAspect", "imageAspect", "newWidth", "newHeight", "x", "y", "scaledRadius", "saveImage", "dataURL", "link", "u", "containerStyle", "previewContainerStyle", "p", "placeholderStyle", "circleStyle", "plusStyle", "textStyle", "controlsContainerStyle", "headingStyle", "url", "fullWidthStyle", "buttonStyle", "labelStyle", "sliderContainerStyle", "sliderStyle", "valueDisplayStyle", "selectStyle", "addPropertyControls", "ControlType", "NEWNavigationFonts", "getFonts", "GHjPahKz6_default", "ImageEditorFonts", "ImageEditor", "ImageEditor1Fonts", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "YouTubeFonts", "Youtube", "FooterFonts", "F5kG9oRDn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transition1", "animation", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "preloadPromise", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "isDisplayed1", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "_getLocalizedValue35", "_getLocalizedValue36", "_getLocalizedValue37", "_getLocalizedValue38", "_getLocalizedValue39", "_getLocalizedValue40", "_getLocalizedValue41", "_getLocalizedValue42", "_getLocalizedValue43", "_getLocalizedValue44", "_getLocalizedValue45", "_getLocalizedValue46", "_getLocalizedValue47", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Link", "css", "FramerTs8U9FFH0", "withCSS", "Ts8U9FFH0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
