1. NextJs Introtypescript를 기준으로 작성되었습니다.Next.Js - start프로젝트 시작을 위한 터미널 명령어npx create-next-app@latest== npm install react@latest next@latest react-dom@latestnpm create-next-app@latest만 입력하면 프로젝트가 시작된다혹은 react, next, react-dom 세개를 설치하는 방식으로 사용가능프로젝트를 실행시키기 위해 npm run dev 명령어를 입력하는데 이는 package.json에 작성된 명령어가 실행되는 것// package.json 일부{ "scripts": { "dev": "next dev" },}