Fix home content photo

This commit is contained in:
Bradley Shellnut 2022-11-10 22:37:50 -06:00 committed by GitHub
parent 6f4156a789
commit 06c1b89015
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,12 @@ const HomeStyles = styled.div`
export default function HomeContent({ alt, imageProps }) {
return (
<HomeStyles>
<Image {...imageProps} alt={alt} placeholder="blur" />
<Image {...imageProps} alt={alt} placeholder="blur"
style={{
width: '100%',
height: 'auto',
}}
/>
<Timeline />
</HomeStyles>
);