├── App.js
├── assets
│ ├── btn
│ │ ├── btn_kakao.svg
│ │ └── btn_link.svg
│ ├── developers
│ │ ├── kahyun.png
│ │ ├── mihey.png
│ │ └── sayyoung.png
│ ├── result
│ │ └── pic_cry_for_kakao.png
│ └── ewhasymbol.png
├── components
│ ├── BoxComponent.js
│ ├── ButtonComponent.js
│ ├── Kakao.js
│ └── ProgressBar.js
├── index.js
├── pages
│ ├── contents
│ │ ├── developers.js
│ │ ├── questions.js
│ │ └── results.js
│ ├── AllResultPage.js
│ ├── DeveloperPage.js
│ ├── LandingPage.js
│ ├── QuizPage.js
│ ├── ResultPage.js
│ └── WarningPage.js
├── reportWebVitals.js
├── setupTests.js
└── style
├── fonts
│ ├── JalnanOTF.otf
│ ├── Spoqa\ Han\ Sans\ Neo\ Bold.otf
│ ├── Spoqa\ Han\ Sans\ Neo\ Light.otf
│ └── Spoqa\ Han\ Sans\ Neo\ Regular.otf
├── index.css
└── theme.js
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"html-react-parser": "1.2.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"styled-components": "^5.2.1",
"web-vitals": "^0.2.4"
}