weddingsite/components/HomeContent.js

23 lines
462 B
JavaScript
Raw Normal View History

import Image from 'next/image';
2021-06-04 00:58:40 +00:00
import styled from 'styled-components';
import Timeline from './Timeline';
const HomeStyles = styled.div`
display: grid;
justify-items: center;
`;
export default function HomeContent({ alt, imageProps }) {
2021-06-04 00:58:40 +00:00
return (
<HomeStyles>
2022-11-11 04:37:50 +00:00
<Image {...imageProps} alt={alt} placeholder="blur"
style={{
width: '100%',
height: 'auto',
}}
/>
2021-06-04 00:58:40 +00:00
<Timeline />
</HomeStyles>
);
}