According to documentation:
The width of the image, in pixels. Must be an integer without a unit. The height of the image, in pixels. Must be an integer without a unit.
https://nextjs.org/docs/api-reference/next/image
Different devices come in various sizes, whether they are desktop or mobile. Sending the exact size for every image can be cumbersome.
In my opinion, it may not be necessary to specify the exact size of an image; rather, ensuring that the aspect ratio of the sent width and height matches the actual image's proportions could suffice. What do you think?
For example, if we consider the businessman image here:
If businessmen on Desktop have an image size of 468x346, then passing width={100} height={74}
should result in an optimal image size being returned. This would also lead to optimal loading speed. Correct?