import Image from 'next/image' const Page = () => { return ( <div> <Image id="img" src="" alt="" width={200} height={300} /> </div> ) } export default Page