Ben bir NextJS projesinde Image kullanmıştım. Width parametresi girmek zorunlu, bundan dolayı hata alıyorsunuz. Ben projede bu şekilde kullanıyordum,
 <figure className="w-full">
        <Image
          src={image.urls.regular}
          alt={image.description}
          width={`${image.width}px`}
          height={`${image.height}px`}
          layout="responsive"
        />
      </figure>