NextJS Image component now supports style prop so I believe this is the right answer:
<div style={{position:"relative"}}>
<Image
src={source}
alt=""
fill
style={{objectFit:"cover"}}
/>
</div>
Parent container is relatively positioned.