├── .firebaserc ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── dynamic_forms_templates ├── chingu_application_qs.json ├── new_voyage_user_qs.json ├── team_standup_qs.json └── voyage_application_qs.json ├── firebase.json ├── package.json ├── public ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png └── index.html ├── src ├── App.js ├── App.test.js ├── ScrollToTop.js ├── assets │ ├── 404-03.png │ ├── Artboard 10.png │ ├── Artboard 11.png │ ├── Artboard 17.png │ ├── Artboard 2-small.png │ ├── Artboard 2.png │ ├── Artboard 3-small.png │ ├── Artboard 3.png │ ├── Artboard 4-small.png │ ├── Artboard 4.png │ ├── Artboard 5.png │ ├── Artboard 6.png │ ├── Artboard 7.png │ ├── Artboard 8.png │ ├── Artboard 9.png │ ├── blank image.png │ ├── blank_picture.png │ ├── communication_url.png │ ├── edit-green.png │ ├── edit-white.png │ ├── edit.png │ ├── error.png │ ├── github-PR-icon.png │ ├── github-issue-icon.png │ ├── github_url.png │ ├── green alert.png │ ├── help-other.png │ ├── help-team-disabled.png │ ├── help-team.png │ ├── landingImage.png │ ├── links.png │ ├── mockup_url.png │ ├── notes_url.png │ ├── placeholder image.png │ ├── project_url.png │ ├── red alert.png │ ├── sad-face.png │ ├── success.png │ ├── team-icon.png │ ├── tier badges-01.png │ ├── tier badges-02.png │ ├── tier badges-03.png │ ├── workflow_url.png │ └── yellow alert.png ├── components │ ├── 404 │ │ ├── 404.jsx │ │ └── 404.scss │ ├── AllProjects │ │ ├── AllProjects.scss │ │ ├── components │ │ │ ├── Project.jsx │ │ │ └── Project.scss │ │ ├── graphql │ │ │ └── allProjectsQuery.js │ │ └── index.jsx │ ├── DynamicForm │ │ ├── DynamicForm.scss │ │ ├── UTC.data.js │ │ ├── components │ │ │ ├── DynamicFormContainer.jsx │ │ │ ├── DynamicFormMaker │ │ │ │ ├── QuestionComponents │ │ │ │ │ ├── SkillSetter │ │ │ │ │ │ ├── ItemTypes.js │ │ │ │ │ │ ├── RenderChosenSkills.jsx │ │ │ │ │ │ ├── RenderSkills.jsx │ │ │ │ │ │ ├── SkillSetter.jsx │ │ │ │ │ │ ├── SourceSkillCard.jsx │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── checkbox.jsx │ │ │ │ │ ├── checkbox_2_column.jsx │ │ │ │ │ ├── date.jsx │ │ │ │ │ ├── dropdown.jsx │ │ │ │ │ ├── index.js │ │ │ │ │ ├── multiple_text_input.jsx │ │ │ │ │ ├── not_functional │ │ │ │ │ │ ├── dropdown_multiple.jsx │ │ │ │ │ │ └── radio_with_other_text_input.jsx │ │ │ │ │ ├── radio.jsx │ │ │ │ │ ├── team_progress_sentiment_buttons.jsx │ │ │ │ │ ├── text.jsx │ │ │ │ │ ├── textarea.jsx │ │ │ │ │ ├── three_buttons.jsx │ │ │ │ │ └── voyage_application_tier_select.jsx │ │ │ │ └── index.js │ │ │ ├── DynamicFormWrapper.jsx │ │ │ ├── index.js │ │ │ └── utilities.js │ │ ├── dynamicFormQuery.js │ │ ├── dynamicFormSubmitMutation.js │ │ └── index.jsx │ ├── Error │ │ ├── Error.scss │ │ ├── FormError.jsx │ │ └── index.jsx │ ├── FeedPortal │ │ ├── FeedPortal.scss │ │ ├── components │ │ │ ├── ChinguCards.jsx │ │ │ ├── ChinguCards.scss │ │ │ ├── FeedItem.jsx │ │ │ ├── FeedItem.scss │ │ │ ├── GithubActivity.jsx │ │ │ ├── GithubActivity.scss │ │ │ ├── InfoComponents.jsx │ │ │ ├── NewsFeed.jsx │ │ │ ├── NewsfeedStandup.jsx │ │ │ ├── NewsfeedStandup.scss │ │ │ ├── NoNews.jsx │ │ │ ├── NoNews.scss │ │ │ ├── SideBar.jsx │ │ │ ├── TeamCard.jsx │ │ │ ├── TeamCard.scss │ │ │ ├── TeamLinks.jsx │ │ │ ├── index.js │ │ │ └── newsfeedData.mock.js │ │ ├── graphql │ │ │ ├── newsfeedQuery.js │ │ │ └── sidebarQuery.js │ │ └── index.jsx │ ├── Footer │ │ ├── Footer.js │ │ └── SubscribeForm.js │ ├── Header │ │ ├── Header.js │ │ └── userBaseQuery.js │ ├── HelpPage │ │ ├── Help.scss │ │ ├── help-qa.data.js │ │ └── index.jsx │ ├── Landing │ │ ├── components │ │ │ ├── CohortsBar.jsx │ │ │ ├── LandingBar.jsx │ │ │ ├── LandingBarWithIcons.jsx │ │ │ ├── LandingBottom.jsx │ │ │ ├── LandingProjects.jsx │ │ │ ├── LandingTestimonial.jsx │ │ │ ├── LandingTop.jsx │ │ │ ├── landingBarItemsData.js │ │ │ └── landingBarRenderers.js │ │ └── index.jsx │ ├── Loader │ │ ├── Loader.scss │ │ └── index.jsx │ ├── Login │ │ ├── Login.scss │ │ ├── components │ │ │ └── GithubLoginModal.jsx │ │ └── index.jsx │ ├── Pages │ │ ├── ApplicationLanding.js │ │ ├── CurrentPrograms.js │ │ ├── FAQ.js │ │ ├── PrivacyPolicy.js │ │ ├── Staff.js │ │ └── VoyageFive.js │ ├── ProjectCard │ │ ├── CohortProjectInfo.jsx │ │ ├── ProjectCard.scss │ │ ├── ProjectImage.jsx │ │ ├── ProjectInfo.jsx │ │ ├── TeamButtons.jsx │ │ ├── TeamCard.scss │ │ ├── TeamResourceLinks.jsx │ │ └── index.jsx │ ├── ProjectShowcase │ │ ├── ProjectShowcase.scss │ │ ├── components │ │ │ ├── Banner.jsx │ │ │ ├── EditProjectForm │ │ │ │ └── index.jsx │ │ │ ├── ExternalLinks.jsx │ │ │ ├── HeroImage.jsx │ │ │ ├── ImageEditModal │ │ │ │ ├── ImagePreview.jsx │ │ │ │ └── index.jsx │ │ │ ├── ImageGallery │ │ │ │ ├── FeaturedImage.jsx │ │ │ │ ├── Thumbnail.jsx │ │ │ │ ├── ThumbnailPanel.jsx │ │ │ │ ├── Thumbnails.jsx │ │ │ │ └── index.jsx │ │ │ ├── ProjectDescription.jsx │ │ │ ├── ProjectSideBar.jsx │ │ │ └── Toolbar │ │ │ │ └── index.jsx │ │ ├── graphql │ │ │ └── getProjectAndUser.js │ │ └── index.jsx │ ├── ProjectStandup │ │ ├── ProjectStandup.scss │ │ └── index.jsx │ ├── Register │ │ ├── Register.scss │ │ └── index.jsx │ ├── SkillsPicker │ │ └── index.jsx │ ├── Success │ │ ├── Success.jsx │ │ └── Success.scss │ ├── Ticketbox │ │ ├── Ticketbox.scss │ │ ├── components │ │ │ ├── BackBtn.jsx │ │ │ ├── Feedback │ │ │ │ ├── BugSuggestion.jsx │ │ │ │ ├── BugSuggestionQA.js │ │ │ │ └── index.js │ │ │ ├── Help │ │ │ │ ├── HelpOptions.jsx │ │ │ │ ├── HelpPageSearch.jsx │ │ │ │ ├── TeamHelp.jsx │ │ │ │ ├── TeamHelpQA.js │ │ │ │ └── index.jsx │ │ │ ├── Success.jsx │ │ │ └── TicketBoxError.jsx │ │ └── index.jsx │ ├── UserProfile │ │ ├── ProjectCards │ │ │ ├── CurrentVoyages.jsx │ │ │ ├── InfoComponents.jsx │ │ │ ├── NoTeamTypeCards.jsx │ │ │ ├── PendingVoyages.jsx │ │ │ └── ProjectCards.jsx │ │ ├── UserInfo.jsx │ │ ├── UserProfile.scss │ │ ├── UserSideBar.jsx │ │ ├── UserSideBar.scss │ │ ├── components │ │ │ ├── ChosenSkills.jsx │ │ │ ├── UserAcquiredSkills │ │ │ │ └── index.jsx │ │ │ ├── UserDesiredSkills │ │ │ │ ├── DesiredSkillPicker.scss │ │ │ │ ├── DesiredSkillsPicker.jsx │ │ │ │ └── index.jsx │ │ │ ├── UserSkills.jsx │ │ │ ├── index.jsx │ │ │ └── timezoneOptions.js │ │ ├── graphql │ │ │ ├── profileQuery.js │ │ │ └── skillsQuery.js │ │ └── index.jsx │ ├── VoyageApplication │ │ ├── VoyageApplication.scss │ │ └── index.jsx │ ├── VoyageCard │ │ ├── Action.js │ │ ├── Badge.js │ │ ├── CheckInDone.js │ │ ├── Info.js │ │ ├── Pending.js │ │ ├── Title.js │ │ ├── VoyageCard.js │ │ ├── VoyageCard.scss │ │ └── WeeklyCheckIn.js │ ├── VoyagePortal │ │ ├── VoyagePortal.scss │ │ ├── graphql │ │ │ └── voyagesQuery.js │ │ └── index.jsx │ ├── WeeklyCheckin │ │ ├── WeeklyCheckin.scss │ │ ├── graphql │ │ │ └── mutation.js │ │ ├── index.js │ │ └── weeklyCheckin.data.js │ ├── common │ │ ├── Button.js │ │ ├── EditButton.js │ │ ├── EditButton.scss │ │ └── Modal.js │ └── utilities │ │ ├── EditableTextField.jsx │ │ ├── EditableTextField.scss │ │ ├── PopupMenu.jsx │ │ ├── PrivateRoute.jsx │ │ ├── Request.jsx │ │ ├── dateFormatter.js │ │ ├── index.jsx │ │ ├── introspectEnum.js │ │ └── newsfeedDateFormatter.js ├── fragmentTypes.json ├── get_uri.js ├── index.js ├── mutations │ ├── authMutation.js │ ├── loginMutation.js │ ├── registerUserMutation.js │ └── updateUser.js ├── registerServiceWorker.js ├── static-api-elements │ ├── companyFAQ.js │ ├── contributorListing.js │ ├── index.js │ ├── programFAQ.js │ └── staffListing.js └── styles │ ├── abstracts │ ├── _functions.scss │ ├── _mixins.scss │ ├── _placeholders.scss │ └── _variables.scss │ ├── assets │ ├── Periman.jpg │ ├── bear8.jpg │ ├── challenge--landing.png │ ├── coment.PNG │ ├── debasree.jpg │ ├── earth--landing.png │ ├── grow--landing.png │ ├── landingImages.js │ ├── pankaja.jpg │ ├── patreon.png │ ├── process-01.png │ ├── process-02.png │ ├── process-03.png │ ├── process-04.png │ ├── project-placeholder.png │ ├── slack_key_gif.mp4 │ ├── slackkey.JPG │ ├── sona.PNG │ ├── staffImages │ │ ├── chance.jpg │ │ ├── francesca.jpg │ │ ├── jim.jpg │ │ ├── parminder.jpg │ │ ├── sab.jpg │ │ ├── staffImages.js │ │ ├── vamp.jpg │ │ └── van.jpg │ ├── ticketybot.PNG │ ├── tier-badges-01--landing.png │ ├── tier-badges-02--landing.png │ ├── tier-badges-03--landing.png │ └── user-placeholder.png │ ├── base │ ├── _base.scss │ ├── _fonts.scss │ ├── _helpers.scss │ └── _typography.scss │ ├── components │ ├── _button.scss │ ├── _landing_icon_item.scss │ ├── _landing_testimonial.scss │ ├── _login_form.scss │ ├── _login_form_item.scss │ ├── _modal.scss │ ├── _signup_form.scss │ └── _signup_form_item.scss │ ├── fontawesome │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ └── fontawesome-all.css │ ├── layout │ ├── _basic-page.scss │ ├── _footer.scss │ └── _header.scss │ ├── main.scss │ ├── pages │ ├── _contact_form.scss │ ├── _current_programs.scss │ ├── _dashboard.scss │ ├── _faq.scss │ ├── _landing.scss │ ├── _login.scss │ ├── _privacy_page.scss │ ├── _profile.scss │ ├── _signup.scss │ ├── _slack.scss │ ├── _staff.scss │ └── _voyage_five.scss │ └── vendors │ ├── _include-media.scss │ └── _normalize.scss └── yarn.lock /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/README.md -------------------------------------------------------------------------------- /dynamic_forms_templates/chingu_application_qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/dynamic_forms_templates/chingu_application_qs.json -------------------------------------------------------------------------------- /dynamic_forms_templates/new_voyage_user_qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/dynamic_forms_templates/new_voyage_user_qs.json -------------------------------------------------------------------------------- /dynamic_forms_templates/team_standup_qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/dynamic_forms_templates/team_standup_qs.json -------------------------------------------------------------------------------- /dynamic_forms_templates/voyage_application_qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/dynamic_forms_templates/voyage_application_qs.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/manifest.json -------------------------------------------------------------------------------- /public/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/ScrollToTop.js -------------------------------------------------------------------------------- /src/assets/404-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/404-03.png -------------------------------------------------------------------------------- /src/assets/Artboard 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 10.png -------------------------------------------------------------------------------- /src/assets/Artboard 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 11.png -------------------------------------------------------------------------------- /src/assets/Artboard 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 17.png -------------------------------------------------------------------------------- /src/assets/Artboard 2-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 2-small.png -------------------------------------------------------------------------------- /src/assets/Artboard 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 2.png -------------------------------------------------------------------------------- /src/assets/Artboard 3-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 3-small.png -------------------------------------------------------------------------------- /src/assets/Artboard 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 3.png -------------------------------------------------------------------------------- /src/assets/Artboard 4-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 4-small.png -------------------------------------------------------------------------------- /src/assets/Artboard 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 4.png -------------------------------------------------------------------------------- /src/assets/Artboard 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 5.png -------------------------------------------------------------------------------- /src/assets/Artboard 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 6.png -------------------------------------------------------------------------------- /src/assets/Artboard 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 7.png -------------------------------------------------------------------------------- /src/assets/Artboard 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 8.png -------------------------------------------------------------------------------- /src/assets/Artboard 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/Artboard 9.png -------------------------------------------------------------------------------- /src/assets/blank image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/blank image.png -------------------------------------------------------------------------------- /src/assets/blank_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/blank_picture.png -------------------------------------------------------------------------------- /src/assets/communication_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/communication_url.png -------------------------------------------------------------------------------- /src/assets/edit-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/edit-green.png -------------------------------------------------------------------------------- /src/assets/edit-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/edit-white.png -------------------------------------------------------------------------------- /src/assets/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/edit.png -------------------------------------------------------------------------------- /src/assets/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/error.png -------------------------------------------------------------------------------- /src/assets/github-PR-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/github-PR-icon.png -------------------------------------------------------------------------------- /src/assets/github-issue-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/github-issue-icon.png -------------------------------------------------------------------------------- /src/assets/github_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/github_url.png -------------------------------------------------------------------------------- /src/assets/green alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/green alert.png -------------------------------------------------------------------------------- /src/assets/help-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/help-other.png -------------------------------------------------------------------------------- /src/assets/help-team-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/help-team-disabled.png -------------------------------------------------------------------------------- /src/assets/help-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/help-team.png -------------------------------------------------------------------------------- /src/assets/landingImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/landingImage.png -------------------------------------------------------------------------------- /src/assets/links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/links.png -------------------------------------------------------------------------------- /src/assets/mockup_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/mockup_url.png -------------------------------------------------------------------------------- /src/assets/notes_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/notes_url.png -------------------------------------------------------------------------------- /src/assets/placeholder image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/placeholder image.png -------------------------------------------------------------------------------- /src/assets/project_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/project_url.png -------------------------------------------------------------------------------- /src/assets/red alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/red alert.png -------------------------------------------------------------------------------- /src/assets/sad-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/sad-face.png -------------------------------------------------------------------------------- /src/assets/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/success.png -------------------------------------------------------------------------------- /src/assets/team-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/team-icon.png -------------------------------------------------------------------------------- /src/assets/tier badges-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/tier badges-01.png -------------------------------------------------------------------------------- /src/assets/tier badges-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/tier badges-02.png -------------------------------------------------------------------------------- /src/assets/tier badges-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/tier badges-03.png -------------------------------------------------------------------------------- /src/assets/workflow_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/workflow_url.png -------------------------------------------------------------------------------- /src/assets/yellow alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/assets/yellow alert.png -------------------------------------------------------------------------------- /src/components/404/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/404/404.jsx -------------------------------------------------------------------------------- /src/components/404/404.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/404/404.scss -------------------------------------------------------------------------------- /src/components/AllProjects/AllProjects.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/AllProjects/AllProjects.scss -------------------------------------------------------------------------------- /src/components/AllProjects/components/Project.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/AllProjects/components/Project.jsx -------------------------------------------------------------------------------- /src/components/AllProjects/components/Project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/AllProjects/components/Project.scss -------------------------------------------------------------------------------- /src/components/AllProjects/graphql/allProjectsQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/AllProjects/graphql/allProjectsQuery.js -------------------------------------------------------------------------------- /src/components/AllProjects/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/AllProjects/index.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/DynamicForm.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/DynamicForm.scss -------------------------------------------------------------------------------- /src/components/DynamicForm/UTC.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/UTC.data.js -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormContainer.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/ItemTypes.js: -------------------------------------------------------------------------------- 1 | export const ItemTypes = { 2 | SKILL_CARD: 'skill-card' 3 | } -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/RenderChosenSkills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/RenderChosenSkills.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/RenderSkills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/RenderSkills.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/SkillSetter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/SkillSetter.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/SourceSkillCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/SourceSkillCard.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/SkillSetter/index.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/checkbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/checkbox.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/checkbox_2_column.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/checkbox_2_column.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/date.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/date.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/dropdown.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/index.js -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/multiple_text_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/multiple_text_input.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/not_functional/dropdown_multiple.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/not_functional/dropdown_multiple.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/not_functional/radio_with_other_text_input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/not_functional/radio_with_other_text_input.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/radio.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/radio.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/team_progress_sentiment_buttons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/team_progress_sentiment_buttons.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/text.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/textarea.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/textarea.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/three_buttons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/three_buttons.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/voyage_application_tier_select.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/QuestionComponents/voyage_application_tier_select.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormMaker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormMaker/index.js -------------------------------------------------------------------------------- /src/components/DynamicForm/components/DynamicFormWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/DynamicFormWrapper.jsx -------------------------------------------------------------------------------- /src/components/DynamicForm/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/index.js -------------------------------------------------------------------------------- /src/components/DynamicForm/components/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/components/utilities.js -------------------------------------------------------------------------------- /src/components/DynamicForm/dynamicFormQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/dynamicFormQuery.js -------------------------------------------------------------------------------- /src/components/DynamicForm/dynamicFormSubmitMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/dynamicFormSubmitMutation.js -------------------------------------------------------------------------------- /src/components/DynamicForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/DynamicForm/index.jsx -------------------------------------------------------------------------------- /src/components/Error/Error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Error/Error.scss -------------------------------------------------------------------------------- /src/components/Error/FormError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Error/FormError.jsx -------------------------------------------------------------------------------- /src/components/Error/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Error/index.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/FeedPortal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/FeedPortal.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/ChinguCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/ChinguCards.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/ChinguCards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/ChinguCards.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/FeedItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/FeedItem.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/FeedItem.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/FeedItem.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/GithubActivity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/GithubActivity.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/GithubActivity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/GithubActivity.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/InfoComponents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/InfoComponents.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/NewsFeed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/NewsFeed.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/NewsfeedStandup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/NewsfeedStandup.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/NewsfeedStandup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/NewsfeedStandup.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/NoNews.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/NoNews.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/NoNews.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/NoNews.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/SideBar.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/TeamCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/TeamCard.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/TeamCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/TeamCard.scss -------------------------------------------------------------------------------- /src/components/FeedPortal/components/TeamLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/TeamLinks.jsx -------------------------------------------------------------------------------- /src/components/FeedPortal/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/index.js -------------------------------------------------------------------------------- /src/components/FeedPortal/components/newsfeedData.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/components/newsfeedData.mock.js -------------------------------------------------------------------------------- /src/components/FeedPortal/graphql/newsfeedQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/graphql/newsfeedQuery.js -------------------------------------------------------------------------------- /src/components/FeedPortal/graphql/sidebarQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/graphql/sidebarQuery.js -------------------------------------------------------------------------------- /src/components/FeedPortal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/FeedPortal/index.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/SubscribeForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Footer/SubscribeForm.js -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/userBaseQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Header/userBaseQuery.js -------------------------------------------------------------------------------- /src/components/HelpPage/Help.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/HelpPage/Help.scss -------------------------------------------------------------------------------- /src/components/HelpPage/help-qa.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/HelpPage/help-qa.data.js -------------------------------------------------------------------------------- /src/components/HelpPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/HelpPage/index.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/CohortsBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/CohortsBar.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingBar.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingBarWithIcons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingBarWithIcons.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingBottom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingBottom.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingProjects.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingProjects.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingTestimonial.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingTestimonial.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/LandingTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/LandingTop.jsx -------------------------------------------------------------------------------- /src/components/Landing/components/landingBarItemsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/landingBarItemsData.js -------------------------------------------------------------------------------- /src/components/Landing/components/landingBarRenderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/components/landingBarRenderers.js -------------------------------------------------------------------------------- /src/components/Landing/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Landing/index.jsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Loader/Loader.scss -------------------------------------------------------------------------------- /src/components/Loader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Loader/index.jsx -------------------------------------------------------------------------------- /src/components/Login/Login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Login/Login.scss -------------------------------------------------------------------------------- /src/components/Login/components/GithubLoginModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Login/components/GithubLoginModal.jsx -------------------------------------------------------------------------------- /src/components/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Login/index.jsx -------------------------------------------------------------------------------- /src/components/Pages/ApplicationLanding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/ApplicationLanding.js -------------------------------------------------------------------------------- /src/components/Pages/CurrentPrograms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/CurrentPrograms.js -------------------------------------------------------------------------------- /src/components/Pages/FAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/FAQ.js -------------------------------------------------------------------------------- /src/components/Pages/PrivacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/PrivacyPolicy.js -------------------------------------------------------------------------------- /src/components/Pages/Staff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/Staff.js -------------------------------------------------------------------------------- /src/components/Pages/VoyageFive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Pages/VoyageFive.js -------------------------------------------------------------------------------- /src/components/ProjectCard/CohortProjectInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/CohortProjectInfo.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/ProjectCard.scss -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/ProjectImage.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/ProjectInfo.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/TeamButtons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/TeamButtons.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/TeamCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/TeamCard.scss -------------------------------------------------------------------------------- /src/components/ProjectCard/TeamResourceLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/TeamResourceLinks.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectCard/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/ProjectShowcase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/ProjectShowcase.scss -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/Banner.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/EditProjectForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/EditProjectForm/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ExternalLinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ExternalLinks.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/HeroImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/HeroImage.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageEditModal/ImagePreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageEditModal/ImagePreview.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageEditModal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageEditModal/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageGallery/FeaturedImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageGallery/FeaturedImage.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageGallery/Thumbnail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageGallery/Thumbnail.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageGallery/ThumbnailPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageGallery/ThumbnailPanel.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageGallery/Thumbnails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageGallery/Thumbnails.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ImageGallery/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ImageGallery/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ProjectDescription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ProjectDescription.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/ProjectSideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/ProjectSideBar.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/components/Toolbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/components/Toolbar/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectShowcase/graphql/getProjectAndUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/graphql/getProjectAndUser.js -------------------------------------------------------------------------------- /src/components/ProjectShowcase/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectShowcase/index.jsx -------------------------------------------------------------------------------- /src/components/ProjectStandup/ProjectStandup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectStandup/ProjectStandup.scss -------------------------------------------------------------------------------- /src/components/ProjectStandup/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/ProjectStandup/index.jsx -------------------------------------------------------------------------------- /src/components/Register/Register.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Register/Register.scss -------------------------------------------------------------------------------- /src/components/Register/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Register/index.jsx -------------------------------------------------------------------------------- /src/components/SkillsPicker/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/SkillsPicker/index.jsx -------------------------------------------------------------------------------- /src/components/Success/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Success/Success.jsx -------------------------------------------------------------------------------- /src/components/Success/Success.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Success/Success.scss -------------------------------------------------------------------------------- /src/components/Ticketbox/Ticketbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/Ticketbox.scss -------------------------------------------------------------------------------- /src/components/Ticketbox/components/BackBtn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/BackBtn.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Feedback/BugSuggestion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Feedback/BugSuggestion.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Feedback/BugSuggestionQA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Feedback/BugSuggestionQA.js -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Feedback/index.js -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Help/HelpOptions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Help/HelpOptions.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Help/HelpPageSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Help/HelpPageSearch.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Help/TeamHelp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Help/TeamHelp.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Help/TeamHelpQA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Help/TeamHelpQA.js -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Help/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Help/index.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/Success.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/Success.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/components/TicketBoxError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/components/TicketBoxError.jsx -------------------------------------------------------------------------------- /src/components/Ticketbox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/Ticketbox/index.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProjectCards/CurrentVoyages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/ProjectCards/CurrentVoyages.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProjectCards/InfoComponents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/ProjectCards/InfoComponents.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProjectCards/NoTeamTypeCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/ProjectCards/NoTeamTypeCards.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProjectCards/PendingVoyages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/ProjectCards/PendingVoyages.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/ProjectCards/ProjectCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/ProjectCards/ProjectCards.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/UserInfo.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserProfile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/UserProfile.scss -------------------------------------------------------------------------------- /src/components/UserProfile/UserSideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/UserSideBar.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/UserSideBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/UserSideBar.scss -------------------------------------------------------------------------------- /src/components/UserProfile/components/ChosenSkills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/ChosenSkills.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/UserAcquiredSkills/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/UserAcquiredSkills/index.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/UserDesiredSkills/DesiredSkillPicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/UserDesiredSkills/DesiredSkillPicker.scss -------------------------------------------------------------------------------- /src/components/UserProfile/components/UserDesiredSkills/DesiredSkillsPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/UserDesiredSkills/DesiredSkillsPicker.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/UserDesiredSkills/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/UserDesiredSkills/index.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/UserSkills.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/UserSkills.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/index.jsx -------------------------------------------------------------------------------- /src/components/UserProfile/components/timezoneOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/components/timezoneOptions.js -------------------------------------------------------------------------------- /src/components/UserProfile/graphql/profileQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/graphql/profileQuery.js -------------------------------------------------------------------------------- /src/components/UserProfile/graphql/skillsQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/graphql/skillsQuery.js -------------------------------------------------------------------------------- /src/components/UserProfile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/UserProfile/index.jsx -------------------------------------------------------------------------------- /src/components/VoyageApplication/VoyageApplication.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageApplication/VoyageApplication.scss -------------------------------------------------------------------------------- /src/components/VoyageApplication/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageApplication/index.jsx -------------------------------------------------------------------------------- /src/components/VoyageCard/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/Action.js -------------------------------------------------------------------------------- /src/components/VoyageCard/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/Badge.js -------------------------------------------------------------------------------- /src/components/VoyageCard/CheckInDone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/CheckInDone.js -------------------------------------------------------------------------------- /src/components/VoyageCard/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/Info.js -------------------------------------------------------------------------------- /src/components/VoyageCard/Pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/Pending.js -------------------------------------------------------------------------------- /src/components/VoyageCard/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/Title.js -------------------------------------------------------------------------------- /src/components/VoyageCard/VoyageCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/VoyageCard.js -------------------------------------------------------------------------------- /src/components/VoyageCard/VoyageCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/VoyageCard.scss -------------------------------------------------------------------------------- /src/components/VoyageCard/WeeklyCheckIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyageCard/WeeklyCheckIn.js -------------------------------------------------------------------------------- /src/components/VoyagePortal/VoyagePortal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyagePortal/VoyagePortal.scss -------------------------------------------------------------------------------- /src/components/VoyagePortal/graphql/voyagesQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyagePortal/graphql/voyagesQuery.js -------------------------------------------------------------------------------- /src/components/VoyagePortal/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/VoyagePortal/index.jsx -------------------------------------------------------------------------------- /src/components/WeeklyCheckin/WeeklyCheckin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/WeeklyCheckin/WeeklyCheckin.scss -------------------------------------------------------------------------------- /src/components/WeeklyCheckin/graphql/mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/WeeklyCheckin/graphql/mutation.js -------------------------------------------------------------------------------- /src/components/WeeklyCheckin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/WeeklyCheckin/index.js -------------------------------------------------------------------------------- /src/components/WeeklyCheckin/weeklyCheckin.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/WeeklyCheckin/weeklyCheckin.data.js -------------------------------------------------------------------------------- /src/components/common/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/common/Button.js -------------------------------------------------------------------------------- /src/components/common/EditButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/common/EditButton.js -------------------------------------------------------------------------------- /src/components/common/EditButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/common/EditButton.scss -------------------------------------------------------------------------------- /src/components/common/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/common/Modal.js -------------------------------------------------------------------------------- /src/components/utilities/EditableTextField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/EditableTextField.jsx -------------------------------------------------------------------------------- /src/components/utilities/EditableTextField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/EditableTextField.scss -------------------------------------------------------------------------------- /src/components/utilities/PopupMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/PopupMenu.jsx -------------------------------------------------------------------------------- /src/components/utilities/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/PrivateRoute.jsx -------------------------------------------------------------------------------- /src/components/utilities/Request.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/Request.jsx -------------------------------------------------------------------------------- /src/components/utilities/dateFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/dateFormatter.js -------------------------------------------------------------------------------- /src/components/utilities/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/index.jsx -------------------------------------------------------------------------------- /src/components/utilities/introspectEnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/introspectEnum.js -------------------------------------------------------------------------------- /src/components/utilities/newsfeedDateFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/components/utilities/newsfeedDateFormatter.js -------------------------------------------------------------------------------- /src/fragmentTypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/fragmentTypes.json -------------------------------------------------------------------------------- /src/get_uri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/get_uri.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mutations/authMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/mutations/authMutation.js -------------------------------------------------------------------------------- /src/mutations/loginMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/mutations/loginMutation.js -------------------------------------------------------------------------------- /src/mutations/registerUserMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/mutations/registerUserMutation.js -------------------------------------------------------------------------------- /src/mutations/updateUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/mutations/updateUser.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/static-api-elements/companyFAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/static-api-elements/companyFAQ.js -------------------------------------------------------------------------------- /src/static-api-elements/contributorListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/static-api-elements/contributorListing.js -------------------------------------------------------------------------------- /src/static-api-elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/static-api-elements/index.js -------------------------------------------------------------------------------- /src/static-api-elements/programFAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/static-api-elements/programFAQ.js -------------------------------------------------------------------------------- /src/static-api-elements/staffListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/static-api-elements/staffListing.js -------------------------------------------------------------------------------- /src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /src/styles/abstracts/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/abstracts/_mixins.scss -------------------------------------------------------------------------------- /src/styles/abstracts/_placeholders.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /src/styles/assets/Periman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/Periman.jpg -------------------------------------------------------------------------------- /src/styles/assets/bear8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/bear8.jpg -------------------------------------------------------------------------------- /src/styles/assets/challenge--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/challenge--landing.png -------------------------------------------------------------------------------- /src/styles/assets/coment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/coment.PNG -------------------------------------------------------------------------------- /src/styles/assets/debasree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/debasree.jpg -------------------------------------------------------------------------------- /src/styles/assets/earth--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/earth--landing.png -------------------------------------------------------------------------------- /src/styles/assets/grow--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/grow--landing.png -------------------------------------------------------------------------------- /src/styles/assets/landingImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/landingImages.js -------------------------------------------------------------------------------- /src/styles/assets/pankaja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/pankaja.jpg -------------------------------------------------------------------------------- /src/styles/assets/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/patreon.png -------------------------------------------------------------------------------- /src/styles/assets/process-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/process-01.png -------------------------------------------------------------------------------- /src/styles/assets/process-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/process-02.png -------------------------------------------------------------------------------- /src/styles/assets/process-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/process-03.png -------------------------------------------------------------------------------- /src/styles/assets/process-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/process-04.png -------------------------------------------------------------------------------- /src/styles/assets/project-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/project-placeholder.png -------------------------------------------------------------------------------- /src/styles/assets/slack_key_gif.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/slack_key_gif.mp4 -------------------------------------------------------------------------------- /src/styles/assets/slackkey.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/slackkey.JPG -------------------------------------------------------------------------------- /src/styles/assets/sona.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/sona.PNG -------------------------------------------------------------------------------- /src/styles/assets/staffImages/chance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/chance.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/francesca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/francesca.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/jim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/jim.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/parminder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/parminder.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/sab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/sab.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/staffImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/staffImages.js -------------------------------------------------------------------------------- /src/styles/assets/staffImages/vamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/vamp.jpg -------------------------------------------------------------------------------- /src/styles/assets/staffImages/van.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/staffImages/van.jpg -------------------------------------------------------------------------------- /src/styles/assets/ticketybot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/ticketybot.PNG -------------------------------------------------------------------------------- /src/styles/assets/tier-badges-01--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/tier-badges-01--landing.png -------------------------------------------------------------------------------- /src/styles/assets/tier-badges-02--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/tier-badges-02--landing.png -------------------------------------------------------------------------------- /src/styles/assets/tier-badges-03--landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/tier-badges-03--landing.png -------------------------------------------------------------------------------- /src/styles/assets/user-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/assets/user-placeholder.png -------------------------------------------------------------------------------- /src/styles/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/base/_base.scss -------------------------------------------------------------------------------- /src/styles/base/_fonts.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/_helpers.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /src/styles/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_button.scss -------------------------------------------------------------------------------- /src/styles/components/_landing_icon_item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_landing_icon_item.scss -------------------------------------------------------------------------------- /src/styles/components/_landing_testimonial.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_landing_testimonial.scss -------------------------------------------------------------------------------- /src/styles/components/_login_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_login_form.scss -------------------------------------------------------------------------------- /src/styles/components/_login_form_item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_login_form_item.scss -------------------------------------------------------------------------------- /src/styles/components/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_modal.scss -------------------------------------------------------------------------------- /src/styles/components/_signup_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_signup_form.scss -------------------------------------------------------------------------------- /src/styles/components/_signup_form_item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/components/_signup_form_item.scss -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/styles/fontawesome/webfonts/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/fontawesome/webfonts/fontawesome-all.css -------------------------------------------------------------------------------- /src/styles/layout/_basic-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/layout/_basic-page.scss -------------------------------------------------------------------------------- /src/styles/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/layout/_footer.scss -------------------------------------------------------------------------------- /src/styles/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/layout/_header.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/pages/_contact_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_contact_form.scss -------------------------------------------------------------------------------- /src/styles/pages/_current_programs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_current_programs.scss -------------------------------------------------------------------------------- /src/styles/pages/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_dashboard.scss -------------------------------------------------------------------------------- /src/styles/pages/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_faq.scss -------------------------------------------------------------------------------- /src/styles/pages/_landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_landing.scss -------------------------------------------------------------------------------- /src/styles/pages/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_login.scss -------------------------------------------------------------------------------- /src/styles/pages/_privacy_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_privacy_page.scss -------------------------------------------------------------------------------- /src/styles/pages/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_profile.scss -------------------------------------------------------------------------------- /src/styles/pages/_signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_signup.scss -------------------------------------------------------------------------------- /src/styles/pages/_slack.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_slack.scss -------------------------------------------------------------------------------- /src/styles/pages/_staff.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_staff.scss -------------------------------------------------------------------------------- /src/styles/pages/_voyage_five.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/pages/_voyage_five.scss -------------------------------------------------------------------------------- /src/styles/vendors/_include-media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/vendors/_include-media.scss -------------------------------------------------------------------------------- /src/styles/vendors/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/src/styles/vendors/_normalize.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chingu-x/chingu-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------