2022년 1월 17일 https://www.youtube.com/watch?v=kn8HPNwPEkw&t=103s

1. install dependencies

Untitled

npx create-react-app disney-plus-clone --template redux

Untitled

이미지 불러오기

Untitled

public 폴더에 images와 video를 저장해두고

불러올때 위 사진과 같이 불러온다

1. Nav

2. Home

[html/css]background 속성(배경 전체 지정)

const Container = styled.main`
  min-height: calc(100vh - 70px); /* 전체 높이에서 헤더를 빼줌 */
  padding: 0 calc() (3.5vw + 5px);
  position: relative;

  &:before {
    background: url('/images/home-background.png') center center / cover
      no-repeat fixed;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
`;

2-1 react slick

Untitled