├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── __mocks__ └── react-redux.js ├── babel.config.js ├── fixtures ├── answers.js ├── content.js ├── images.js ├── overview.js ├── question.js ├── results.js └── scores.js ├── index.html ├── jest.config.js ├── jest.setup.js ├── package.json ├── public └── preview.png ├── src ├── App.jsx ├── App.test.jsx ├── assets │ ├── __mocks__ │ │ └── images.js │ ├── images.js │ └── images │ │ ├── contributors │ │ ├── nkim.png │ │ ├── sjchoi.png │ │ └── yehan.png │ │ ├── feeds │ │ ├── feed1_1.png │ │ ├── feed1_2.png │ │ ├── feed2_1.png │ │ ├── feed2_2.png │ │ ├── feed3_1.png │ │ └── feed3_2.png │ │ ├── logo │ │ ├── logo_black.png │ │ ├── logo_contributors.png │ │ └── logo_white.png │ │ ├── profiles │ │ ├── profile1_1.png │ │ ├── profile1_2.png │ │ ├── profile1_3.png │ │ ├── profile1_4.png │ │ ├── profile2_1.png │ │ ├── profile2_2.png │ │ ├── profile2_3.png │ │ ├── profile2_4.png │ │ ├── profile3_1.png │ │ ├── profile3_2.png │ │ ├── profile3_3.png │ │ ├── profile3_4.png │ │ ├── profile4_1.png │ │ ├── profile4_2.png │ │ ├── profile4_3.png │ │ └── profile4_4.png │ │ └── result │ │ ├── amazon_logo.png │ │ ├── amazon_title.png │ │ ├── apple_logo.png │ │ ├── apple_title.png │ │ ├── facebook_logo.png │ │ ├── facebook_title.png │ │ ├── google_logo.png │ │ ├── google_title.png │ │ ├── intel_logo.png │ │ ├── intel_title.png │ │ ├── microsoft_logo.png │ │ ├── microsoft_title.png │ │ ├── netflix_logo.png │ │ ├── netflix_title.png │ │ ├── plugandplay_logo.png │ │ ├── plugandplay_title.png │ │ ├── tesla_logo.png │ │ └── tesla_title.png ├── components │ ├── Home.jsx │ ├── Home.test.jsx │ ├── NavigationButtons.jsx │ ├── NavigationButtons.test.jsx │ ├── Overview.jsx │ ├── Overview.test.jsx │ ├── Question.jsx │ ├── Question.test.jsx │ ├── Result.jsx │ ├── Result.test.jsx │ ├── WhoAreYou.jsx │ ├── WhoAreYou.test.jsx │ ├── contributors │ │ ├── BackToHomeButton.jsx │ │ ├── ContributorsBar.jsx │ │ ├── ExternalLink.jsx │ │ ├── MainContributor.jsx │ │ └── SpecialContributors.jsx │ ├── home │ │ ├── HomeButtons.jsx │ │ └── HomeTitle.jsx │ ├── result │ │ ├── CompanyTitle.jsx │ │ ├── ProfileBar.jsx │ │ ├── ResultContent.jsx │ │ ├── ResultPageButtons.jsx │ │ ├── ShareButtons.jsx │ │ └── TitleWithEmoji.jsx │ └── who-are-you │ │ ├── AnswerButtons.jsx │ │ ├── BackButton.jsx │ │ ├── FavoriteIcon.jsx │ │ ├── ImageSlider.jsx │ │ ├── NextButton.jsx │ │ ├── OverviewText.jsx │ │ ├── ProgressIndicator.jsx │ │ ├── QuestionText.jsx │ │ ├── SubmitButton.jsx │ │ ├── TipsText.jsx │ │ └── TopBar.jsx ├── containers │ ├── ButtonsBarContainer.jsx │ ├── ButtonsBarContainer.test.jsx │ ├── HomeContainer.jsx │ ├── HomeContainer.test.jsx │ ├── ResultContainer.jsx │ ├── ResultContainer.test.jsx │ ├── WhoAreYouContainer.jsx │ └── WhoAreYouContainer.test.jsx ├── data │ ├── contributors.js │ ├── questionnaire.js │ ├── questionniare-meta.js │ ├── results.js │ └── scores.js ├── index.jsx ├── pages │ ├── ContributorsPage.jsx │ ├── ContributorsPage.test.jsx │ ├── HomePage.jsx │ ├── HomePage.test.jsx │ ├── NotFoundPage.jsx │ ├── NotFoundPage.test.jsx │ ├── ResultPage.jsx │ ├── ResultPage.test.jsx │ ├── WhoAreYouPage.jsx │ └── WhoAreYouPage.test.jsx ├── reducer.js ├── reducer.test.js ├── services │ ├── __mocks__ │ │ └── api.js │ ├── api.js │ └── api.test.js ├── slice.js ├── store.js ├── styles │ ├── constants.js │ ├── contributors.js │ ├── navigation-buttons.js │ ├── root.js │ └── who-are-you.js ├── utils.js └── utils.test.js └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/__mocks__/react-redux.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/babel.config.js -------------------------------------------------------------------------------- /fixtures/answers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/answers.js -------------------------------------------------------------------------------- /fixtures/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/content.js -------------------------------------------------------------------------------- /fixtures/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/images.js -------------------------------------------------------------------------------- /fixtures/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/overview.js -------------------------------------------------------------------------------- /fixtures/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/question.js -------------------------------------------------------------------------------- /fixtures/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/results.js -------------------------------------------------------------------------------- /fixtures/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/fixtures/scores.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/package.json -------------------------------------------------------------------------------- /public/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/public/preview.png -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/App.test.jsx -------------------------------------------------------------------------------- /src/assets/__mocks__/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/__mocks__/images.js -------------------------------------------------------------------------------- /src/assets/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images.js -------------------------------------------------------------------------------- /src/assets/images/contributors/nkim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/contributors/nkim.png -------------------------------------------------------------------------------- /src/assets/images/contributors/sjchoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/contributors/sjchoi.png -------------------------------------------------------------------------------- /src/assets/images/contributors/yehan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/contributors/yehan.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed1_1.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed1_2.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed2_1.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed2_2.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed3_1.png -------------------------------------------------------------------------------- /src/assets/images/feeds/feed3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/feeds/feed3_2.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/logo/logo_black.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo_contributors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/logo/logo_contributors.png -------------------------------------------------------------------------------- /src/assets/images/logo/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/logo/logo_white.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile1_1.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile1_2.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile1_3.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile1_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile1_4.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile2_1.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile2_2.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile2_3.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile2_4.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile3_1.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile3_2.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile3_3.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile3_4.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile4_1.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile4_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile4_2.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile4_3.png -------------------------------------------------------------------------------- /src/assets/images/profiles/profile4_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/profiles/profile4_4.png -------------------------------------------------------------------------------- /src/assets/images/result/amazon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/amazon_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/amazon_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/amazon_title.png -------------------------------------------------------------------------------- /src/assets/images/result/apple_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/apple_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/apple_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/apple_title.png -------------------------------------------------------------------------------- /src/assets/images/result/facebook_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/facebook_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/facebook_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/facebook_title.png -------------------------------------------------------------------------------- /src/assets/images/result/google_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/google_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/google_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/google_title.png -------------------------------------------------------------------------------- /src/assets/images/result/intel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/intel_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/intel_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/intel_title.png -------------------------------------------------------------------------------- /src/assets/images/result/microsoft_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/microsoft_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/microsoft_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/microsoft_title.png -------------------------------------------------------------------------------- /src/assets/images/result/netflix_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/netflix_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/netflix_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/netflix_title.png -------------------------------------------------------------------------------- /src/assets/images/result/plugandplay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/plugandplay_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/plugandplay_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/plugandplay_title.png -------------------------------------------------------------------------------- /src/assets/images/result/tesla_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/tesla_logo.png -------------------------------------------------------------------------------- /src/assets/images/result/tesla_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/assets/images/result/tesla_title.png -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Home.jsx -------------------------------------------------------------------------------- /src/components/Home.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Home.test.jsx -------------------------------------------------------------------------------- /src/components/NavigationButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/NavigationButtons.jsx -------------------------------------------------------------------------------- /src/components/NavigationButtons.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/NavigationButtons.test.jsx -------------------------------------------------------------------------------- /src/components/Overview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Overview.jsx -------------------------------------------------------------------------------- /src/components/Overview.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Overview.test.jsx -------------------------------------------------------------------------------- /src/components/Question.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Question.jsx -------------------------------------------------------------------------------- /src/components/Question.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Question.test.jsx -------------------------------------------------------------------------------- /src/components/Result.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Result.jsx -------------------------------------------------------------------------------- /src/components/Result.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/Result.test.jsx -------------------------------------------------------------------------------- /src/components/WhoAreYou.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/WhoAreYou.jsx -------------------------------------------------------------------------------- /src/components/WhoAreYou.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/WhoAreYou.test.jsx -------------------------------------------------------------------------------- /src/components/contributors/BackToHomeButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/contributors/BackToHomeButton.jsx -------------------------------------------------------------------------------- /src/components/contributors/ContributorsBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/contributors/ContributorsBar.jsx -------------------------------------------------------------------------------- /src/components/contributors/ExternalLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/contributors/ExternalLink.jsx -------------------------------------------------------------------------------- /src/components/contributors/MainContributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/contributors/MainContributor.jsx -------------------------------------------------------------------------------- /src/components/contributors/SpecialContributors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/contributors/SpecialContributors.jsx -------------------------------------------------------------------------------- /src/components/home/HomeButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/home/HomeButtons.jsx -------------------------------------------------------------------------------- /src/components/home/HomeTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/home/HomeTitle.jsx -------------------------------------------------------------------------------- /src/components/result/CompanyTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/CompanyTitle.jsx -------------------------------------------------------------------------------- /src/components/result/ProfileBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/ProfileBar.jsx -------------------------------------------------------------------------------- /src/components/result/ResultContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/ResultContent.jsx -------------------------------------------------------------------------------- /src/components/result/ResultPageButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/ResultPageButtons.jsx -------------------------------------------------------------------------------- /src/components/result/ShareButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/ShareButtons.jsx -------------------------------------------------------------------------------- /src/components/result/TitleWithEmoji.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/result/TitleWithEmoji.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/AnswerButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/AnswerButtons.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/BackButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/BackButton.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/FavoriteIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/FavoriteIcon.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/ImageSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/ImageSlider.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/NextButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/NextButton.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/OverviewText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/OverviewText.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/ProgressIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/ProgressIndicator.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/QuestionText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/QuestionText.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/SubmitButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/SubmitButton.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/TipsText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/TipsText.jsx -------------------------------------------------------------------------------- /src/components/who-are-you/TopBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/components/who-are-you/TopBar.jsx -------------------------------------------------------------------------------- /src/containers/ButtonsBarContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/ButtonsBarContainer.jsx -------------------------------------------------------------------------------- /src/containers/ButtonsBarContainer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/ButtonsBarContainer.test.jsx -------------------------------------------------------------------------------- /src/containers/HomeContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/HomeContainer.jsx -------------------------------------------------------------------------------- /src/containers/HomeContainer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/HomeContainer.test.jsx -------------------------------------------------------------------------------- /src/containers/ResultContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/ResultContainer.jsx -------------------------------------------------------------------------------- /src/containers/ResultContainer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/ResultContainer.test.jsx -------------------------------------------------------------------------------- /src/containers/WhoAreYouContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/WhoAreYouContainer.jsx -------------------------------------------------------------------------------- /src/containers/WhoAreYouContainer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/containers/WhoAreYouContainer.test.jsx -------------------------------------------------------------------------------- /src/data/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/data/contributors.js -------------------------------------------------------------------------------- /src/data/questionnaire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/data/questionnaire.js -------------------------------------------------------------------------------- /src/data/questionniare-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/data/questionniare-meta.js -------------------------------------------------------------------------------- /src/data/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/data/results.js -------------------------------------------------------------------------------- /src/data/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/data/scores.js -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/pages/ContributorsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/ContributorsPage.jsx -------------------------------------------------------------------------------- /src/pages/ContributorsPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/ContributorsPage.test.jsx -------------------------------------------------------------------------------- /src/pages/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/HomePage.jsx -------------------------------------------------------------------------------- /src/pages/HomePage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/HomePage.test.jsx -------------------------------------------------------------------------------- /src/pages/NotFoundPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/NotFoundPage.jsx -------------------------------------------------------------------------------- /src/pages/NotFoundPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/NotFoundPage.test.jsx -------------------------------------------------------------------------------- /src/pages/ResultPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/ResultPage.jsx -------------------------------------------------------------------------------- /src/pages/ResultPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/ResultPage.test.jsx -------------------------------------------------------------------------------- /src/pages/WhoAreYouPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/WhoAreYouPage.jsx -------------------------------------------------------------------------------- /src/pages/WhoAreYouPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/pages/WhoAreYouPage.test.jsx -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/reducer.js -------------------------------------------------------------------------------- /src/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/reducer.test.js -------------------------------------------------------------------------------- /src/services/__mocks__/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/services/__mocks__/api.js -------------------------------------------------------------------------------- /src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/services/api.js -------------------------------------------------------------------------------- /src/services/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/services/api.test.js -------------------------------------------------------------------------------- /src/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/slice.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/store.js -------------------------------------------------------------------------------- /src/styles/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/styles/constants.js -------------------------------------------------------------------------------- /src/styles/contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/styles/contributors.js -------------------------------------------------------------------------------- /src/styles/navigation-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/styles/navigation-buttons.js -------------------------------------------------------------------------------- /src/styles/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/styles/root.js -------------------------------------------------------------------------------- /src/styles/who-are-you.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/styles/who-are-you.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/src/utils.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeSoom/hello-silicon-valley-naraekn/HEAD/webpack.config.js --------------------------------------------------------------------------------