I'm working with Next.js, and for some reason my images are looking somewhat blurry when I use Next/Image.
Here's what my code looks like:
<img src={url} width={articleWidth} />
<Image
className="text-center"
src={url}
alt={alt}
width={width}
height={height}
/>
Here's what the images look like (it might be a bit difficult to tell but the Next/Image version is clearly blurrier on my monitor).

A few other pieces of info I noticed
- The version using the
imgtag had an intrinsic size of2016 x 1663and the version usingNext/Imagehad an intrinsic size of750x615
How do I make Next/Image images look just as clear as my regular img component