Image from next/imagepublic foldersrc attribute
Make sure to add the image domain in next.config.js under images.domains

next/image?import Image from 'next/image';
export default function Example() {
return (
<Image
src="/man.png"
alt="Example"
width={300}
height={300}
priority
/>
);
}module.exports = {
images: {
domains: ['images.pexels.com'],
},
};