mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
22 lines
462 B
JavaScript
22 lines
462 B
JavaScript
import Image from 'next/image';
|
|
import styled from 'styled-components';
|
|
import Timeline from './Timeline';
|
|
|
|
const HomeStyles = styled.div`
|
|
display: grid;
|
|
justify-items: center;
|
|
`;
|
|
|
|
export default function HomeContent({ alt, imageProps }) {
|
|
return (
|
|
<HomeStyles>
|
|
<Image {...imageProps} alt={alt} placeholder="blur"
|
|
style={{
|
|
width: '100%',
|
|
height: 'auto',
|
|
}}
|
|
/>
|
|
<Timeline />
|
|
</HomeStyles>
|
|
);
|
|
}
|