in website/src/pages/index.js [173:186]
function ScreenRect({className, fill, stroke}) {
return (
<rect
className={`screen ${className || ''}`}
rx="3%"
width="180"
height="300"
x="-90"
y="-150"
fill={fill}
stroke={stroke}
/>
);
}