All images are shown in full screen and overlaid. ```tsx import Image from 'next/image'; import Masonry from 'react-masonry-css' <Masonry> { imgs.map(img => ( <Image key={img.id} src={img.src} layout='fill' /> )) } </Masonry> ```