This is my code:
<div className="flex justify-around">
<div className="flex flex-col">
<p>img</p>
<img alt="everest" width={400} height={400} src="https://i.imgur.com/z6vW3WI.jpeg" />
<p>Some content below</p>
</div>
<div className="flex flex-col">
<p>next/image</p>
<Image alt="everest" width={400} height={400} src="https://i.imgur.com/z6vW3WI.jpeg" />
<p>Some content below</p>
</div>
</div>
And as you can see below, next/image is causing the layout shift while the <img> tag is not shifting the layout.
I'm so confused this shouldn't be happening with next/image.