Image Optimization
import Image from 'next/image';
function MyImage() {
return (
<Image
src="/images/profile.jpg"
alt="Profile picture"
width={500}
height={500}
/>
);
}
- Automatic image optimization
- Lazy loading and responsive sizes