mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
Fix home content photo
This commit is contained in:
parent
6f4156a789
commit
06c1b89015
1 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue