기능 개발을 완료하고, 남은 것은 메타 데이터를 설정해 주는 것이다.
meta title, meta description 등등
head요소를 추가해주는것은 좋은 웹사이트를 만드는 기준이다.
index.js에서 next/head 임포트 하여 사용 가능하다.
import Head from 'next/head'
<Head>
<title>React Start Page</title>
<meta
name="description"
content="Browse a huge list of~~~~"
></meta>
</Head>
Head
를 적용 해줄 수 있다.