am trying to insert an image in my main component everything is working fine, my alt atribute is displaying but the image in not displaying on the browser. please what am i doing wrong
import port from "../public/port.png";
export default function Main() {
return (
<section className="">
<div className="">
<img src={port} alt="illustration" />
</div>
</section>
);
}