weddingsite/components_old/HomeContent.js

27 lines
516 B
JavaScript
Raw Permalink 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>
<Image
{...imageProps}
alt={alt}
placeholder="blur"
2022-11-11 04:37:50 +00:00
style={{
width: '100%',
height: '100%',
objectFit: 'cover',
2022-11-11 04:37:50 +00:00
}}
/>
2021-06-04 00:58:40 +00:00
<Timeline />
</HomeStyles>
);
}