HomeMain.js 947 Bytes
import React from "react";
import styled from "styled-components";
import HomeTodo from "./HomeTodo";
import HomeCalender from "./HomeCalendar";
import HomeCheckList from "./HomeCheckList";
import img from "../../imgs/1.jpg";

const HomeContainer = styled.div`
  display: flex;
  flex-direction: row;
  width: 85%;
  background-image: url(${img});
  background-position: center;
  background-size: cover;
`;

const HomeMiddleBox = styled.div`
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
`;
const HomeRightBox = styled.div`
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
  width: 30%;
`;

export default () => {
  return (
    <HomeContainer>
      <HomeMiddleBox>
        <HomeTodo />
      </HomeMiddleBox>
      <HomeRightBox>
        <HomeCalender />
        <HomeCheckList />
      </HomeRightBox>
    </HomeContainer>
  );
};