I'm having trouble displaying an image below my navigation bar. The image I'm trying to display is located at https://i.sstatic.net/8PUa3.png and has dimensions of 234 x 156 px.
However, the image appears blurry and only a portion of it can be seen. Could this be due to its small size in terms of height/width or some other factor?
Below is the code snippet responsible for displaying the image:
<div class="flex w-full justify-center">
<img
src="../images/cars.png" alt= ""
class= "h-48 w-full object-cover" />
</div>