I'm trying to generate multiple size images with
<Image
src={Screenshot}
class="w-full rounded-md shadow-xl ring-1 ring-black ring-opacity-5 lg:h-full lg:w-auto lg:max-w-none"
widths={[500, 720]}
sizes={`(max-width: 768px) 500px, 720px`}
/>
``` but the resulting images have the same size. Here a the sample https://deploy-preview-1--landing-skedr.netlify.app ( it's the main image from the header ). What I'm doing wrong?