mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
24 lines
495 B
JavaScript
24 lines
495 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
import CustomNextImage from './CustomNextImage';
|
||
|
|
import Timeline from './Timeline';
|
||
|
|
|
||
|
|
const HomeStyles = styled.div`
|
||
|
|
display: grid;
|
||
|
|
justify-items: center;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default function HomeContent() {
|
||
|
|
return (
|
||
|
|
<HomeStyles>
|
||
|
|
<CustomNextImage
|
||
|
|
src="https://via.placeholder.com/800X1307.png"
|
||
|
|
height={880}
|
||
|
|
width={1307}
|
||
|
|
alt="Picture of Name and Name"
|
||
|
|
blur
|
||
|
|
/>
|
||
|
|
<Timeline />
|
||
|
|
</HomeStyles>
|
||
|
|
);
|
||
|
|
}
|