강의의 아래 내용은
const BackgroundImage = styled((props: GatsbyImgProps) => (
<Img {...props} style={{ position: 'absolute' }} />
))`
아래와 같이 수정되어야 될 것 같네요
const BackgroundImage = styled((props: GatsbyImgProps) => (
<GatsbyImage {...props} style={{ position: 'absolute' }} />
))`