// put "?auto=compress" at the end of the image URL
// it will compress the image and load slightly fast
function App() {
return (
<img
src="https://images.unsplash.com/photo-1541534401786-2077eed87a74?auto=compress"
alt="new"
/>
);
}