I tried to make an image round using the Image Component in NextJS13, but I ran into some issues
Additionally, when I styled it with Tailwind, the full style didn't seem to take effect
<div className="h-64 w-96 relative">
<Image
src={img}
width={200}
height={200}
alt="image"
className="rounded-full"
/>
</div>