# Node 설치
$ brew install node
# Next App 설치
$ npm install -g create-next-app
# my-app 만들기
$ npx create-next-app@latest my-app
# my-app 실행
$ npm run dev
# TailwindCSS 설치
$ yarn add -D tailwindcss@latest postcss@latest autoprefixer@latest
$ npx tailwindcss init -p
$ yarn add @heroicons/react
end