├── .env ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── favicon.ico ├── images │ ├── common │ │ ├── default-profile-img.png │ │ ├── default-team-logo.png │ │ ├── ssafy-mate_logo_medium.png │ │ ├── ssafy-mate_logo_small.png │ │ └── toggle-black.png │ ├── home │ │ ├── autonomy-project_animation.png │ │ ├── autonomy-project_link-img_large.png │ │ ├── autonomy-project_link-img_medium.png │ │ ├── autonomy-project_link-img_small.png │ │ ├── common-project_animation.png │ │ ├── common-project_link-img_large.png │ │ ├── common-project_link-img_medium.png │ │ ├── common-project_link-img_small.png │ │ ├── iphone-frame.png │ │ ├── mobile-chatting-sample-img_medium.png │ │ ├── mobile-chatting-sample-img_small.png │ │ ├── mobile-team-list-sample-img_medium.png │ │ ├── mobile-team-list-sample-img_small.png │ │ ├── pc-team-info-sample-img.png │ │ ├── pc-team-list-sample-img.png │ │ ├── pc-user-info-sample-img.png │ │ ├── pc-user-list-sample-img.png │ │ ├── specialization-project_animation.png │ │ ├── specialization-project_link-img_large.png │ │ ├── specialization-project_link-img_medium.png │ │ └── specialization-project_link-img_small.png │ └── projects │ │ ├── ai-video_animation.webp │ │ ├── ai-voice_animation.webp │ │ ├── bigdata-dispersion_animation.webp │ │ ├── bigdata-recommendation_animation.webp │ │ ├── blockchain-digital-money_animation.webp │ │ ├── blockchain-p2p_animation.webp │ │ └── iot_animation.webp ├── index.html ├── manifest.json ├── mockServiceWorker.js └── robots.txt ├── readme_assets ├── after-web-optimization.png ├── architecture.png ├── before-web-optimization.png ├── erd.png ├── ga-browser-graph.png ├── ga-os-graph.png ├── ga-user-graph.png ├── google-search.png ├── home-page-headingsmap.png ├── seo-score.png ├── ssafy-mate_logo.png ├── team-info-page-headingsmap.png └── team-list-page-headingsmap.png ├── src ├── App.tsx ├── components │ ├── account │ │ ├── AccountEditCard.tsx │ │ ├── AccountEditTaps.tsx │ │ ├── BasicInformationSection.tsx │ │ ├── FindUserIdCard.tsx │ │ ├── NewPassWordCardSubHead.tsx │ │ ├── NewPasswordCard.tsx │ │ └── ProfileInformationSection.tsx │ ├── chart │ │ ├── JobChart.tsx │ │ └── RecruitingStatusChart.tsx │ ├── chat │ │ ├── ChatMessageBox.tsx │ │ ├── ChatMessageSection.tsx │ │ ├── ChatProfileHeaderbar.tsx │ │ ├── ChatRoomItem.tsx │ │ ├── ChatRoomListSidebar.tsx │ │ └── ChatSection.tsx │ ├── common │ │ ├── Alert.tsx │ │ ├── ErrorSection.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Loading.tsx │ │ ├── LoadingCircular.tsx │ │ ├── MenuBar.tsx │ │ ├── ProfileTechStackTagWithLevel.tsx │ │ ├── TechStackTag.tsx │ │ ├── TechStackTagWithLevel.tsx │ │ ├── VisuallyHiddenHead.tsx │ │ └── WarningMessage.tsx │ ├── error │ │ ├── ErrorGuidanceSection.tsx │ │ └── ErrorHeader.tsx │ ├── home │ │ ├── common │ │ │ └── ToTopButton.tsx │ │ ├── homeBanner │ │ │ ├── HomeBannerCard.tsx │ │ │ └── HomeBannerContainer.tsx │ │ ├── projectLinks │ │ │ ├── ProjectLinkCard.tsx │ │ │ ├── ProjectLinksContainer.tsx │ │ │ └── ProjectTrackDialog.tsx │ │ └── serviceIntro │ │ │ ├── IntroSection.tsx │ │ │ ├── MobileServiceIntroSection.tsx │ │ │ ├── PcBox.tsx │ │ │ └── ServiceIntroContainer.tsx │ ├── policy │ │ ├── PrivacySection.tsx │ │ └── TermsOfServiceSection.tsx │ ├── projects │ │ ├── navigation │ │ │ └── ProjectPageNavigation.tsx │ │ ├── projectTrackBanner │ │ │ ├── ProjectTrackBannerSection.tsx │ │ │ └── ProjectTrackCard.tsx │ │ ├── recruitment │ │ │ ├── EmptyBox.tsx │ │ │ ├── Pagenation.tsx │ │ │ ├── RecruitStatusBadge.tsx │ │ │ ├── RecruitStatusTag.tsx │ │ │ ├── TeamItem.tsx │ │ │ ├── TeamRecruitmentSection.tsx │ │ │ ├── UserItem.tsx │ │ │ └── UserRecruitmentSection.tsx │ │ ├── requestList │ │ │ ├── EmptyRequestBox.tsx │ │ │ ├── ReceiveRequestListSection.tsx │ │ │ ├── RequestItem.tsx │ │ │ └── SendRequestListSection.tsx │ │ ├── searchForm │ │ │ ├── SearchFormWithTeams.tsx │ │ │ └── SearchFormWithUsers.tsx │ │ └── skeletonUI │ │ │ ├── SkeletonTeamItem.tsx │ │ │ ├── SkeletonTeamRecruitmentSection.tsx │ │ │ ├── SkeletonUserItem.tsx │ │ │ └── SkeletonUserRecruitmentSection.tsx │ ├── signIn │ │ └── SignInCard.tsx │ ├── signUp │ │ ├── AuthForm.tsx │ │ ├── ProfileForm.tsx │ │ ├── SignUpCard.tsx │ │ ├── SignUpForm.tsx │ │ └── SignUpStepper.tsx │ ├── team │ │ ├── TeamCreateForm.tsx │ │ ├── TeamEditForm.tsx │ │ ├── TeamInfoSection.tsx │ │ ├── TeamMemberItem.tsx │ │ ├── TeamMembersStatus.tsx │ │ ├── TeamTechStackTag.tsx │ │ └── skeletonUI │ │ │ └── SkeletonTeamInfoSection.tsx │ └── user │ │ ├── UserInfoSection.tsx │ │ ├── UserLabel.tsx │ │ ├── UserTechStackTag.tsx │ │ └── skeletonUI │ │ └── SkeletonUserInfoSection.tsx ├── data │ ├── jobListData.ts │ └── ssafyData.ts ├── history.ts ├── hooks │ ├── reactQueryHooks │ │ ├── useChatLog.ts │ │ ├── useChatRoomList.ts │ │ ├── useReceiveRequests.ts │ │ ├── useSendChat.ts │ │ ├── useSendRequests.ts │ │ ├── useTeamInfo.ts │ │ ├── useTeamList.ts │ │ ├── useUserInfo.ts │ │ └── useUserList.ts │ ├── reduxHooks │ │ ├── useMyTeamTechStacks.ts │ │ ├── useProfileInfo.ts │ │ ├── useProfileTeckStacks.ts │ │ ├── useProjectTrack.ts │ │ ├── useToken.ts │ │ ├── useUserId.ts │ │ ├── useUserIdName.ts │ │ └── useUserProjectInfo.ts │ ├── useDocumentTitle.ts │ ├── useMyTeamId.ts │ ├── useOnScreen.ts │ ├── useSocket.ts │ ├── useTechStackList.ts │ └── useTextArea.ts ├── index.tsx ├── mocks │ ├── browser.ts │ ├── database │ │ ├── auth.ts │ │ ├── chatting.ts │ │ ├── signIn.ts │ │ ├── team.ts │ │ ├── techstack.ts │ │ └── user.ts │ └── handlers │ │ ├── authHandlers.ts │ │ ├── chattingHandlers.ts │ │ ├── findIdHandlers.ts │ │ ├── newPasswordHandlers.ts │ │ ├── requestsHandlers.ts │ │ ├── signInHandlers.ts │ │ ├── teamsHandlers.ts │ │ ├── techStacksHandlers.ts │ │ └── usersHandlers.ts ├── pages │ ├── ChatPage.tsx │ ├── ErrorPage.tsx │ ├── HomePage.tsx │ ├── NotFoundPage.tsx │ ├── SignInPage.tsx │ ├── SignUpPage.tsx │ ├── policy │ │ ├── PrivacyPage.tsx │ │ └── TermsOfServicePage.tsx │ ├── projects │ │ ├── SpecializedProjectReceiveRequestListPage.tsx │ │ ├── SpecializedProjectSendRequestListPage.tsx │ │ ├── SpecializedProjectTeamListPage.tsx │ │ ├── SpecializedProjectUserListPage.tsx │ │ └── TeamCreatePage.tsx │ ├── teams │ │ ├── TeamEditPage.tsx │ │ └── TeamInfoPage.tsx │ └── users │ │ ├── AccountEditPage.tsx │ │ ├── FindUserIdPage.tsx │ │ ├── NewPasswordPage.tsx │ │ └── UserInfoPage.tsx ├── react-app-env.d.ts ├── redux │ ├── createReduxStore.ts │ └── modules │ │ ├── alert.ts │ │ ├── auth.ts │ │ ├── myTeam.ts │ │ ├── profile.ts │ │ ├── reducer.ts │ │ └── rootSaga.ts ├── services │ ├── ChatService.ts │ ├── PersistReducerService.ts │ ├── RequestService.ts │ ├── TeamService.ts │ ├── TechStackService.ts │ ├── TokenService.ts │ └── UserService.ts ├── styles │ ├── commonStyles.ts │ ├── resetStyles.ts │ └── sweetAlertStyles.ts ├── types │ ├── accountTypes.ts │ ├── alertTypes.ts │ ├── authTypes.ts │ ├── chartTypes.ts │ ├── commonTypes.ts │ ├── messageTypes.ts │ ├── signUpTypes.ts │ ├── teamTypes.ts │ └── userTypes.ts └── utils │ ├── ScrollToTop.tsx │ ├── axios.ts │ └── regularExpressionData.ts ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/common/default-profile-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/common/default-profile-img.png -------------------------------------------------------------------------------- /public/images/common/default-team-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/common/default-team-logo.png -------------------------------------------------------------------------------- /public/images/common/ssafy-mate_logo_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/common/ssafy-mate_logo_medium.png -------------------------------------------------------------------------------- /public/images/common/ssafy-mate_logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/common/ssafy-mate_logo_small.png -------------------------------------------------------------------------------- /public/images/common/toggle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/common/toggle-black.png -------------------------------------------------------------------------------- /public/images/home/autonomy-project_animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/autonomy-project_animation.png -------------------------------------------------------------------------------- /public/images/home/autonomy-project_link-img_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/autonomy-project_link-img_large.png -------------------------------------------------------------------------------- /public/images/home/autonomy-project_link-img_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/autonomy-project_link-img_medium.png -------------------------------------------------------------------------------- /public/images/home/autonomy-project_link-img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/autonomy-project_link-img_small.png -------------------------------------------------------------------------------- /public/images/home/common-project_animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/common-project_animation.png -------------------------------------------------------------------------------- /public/images/home/common-project_link-img_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/common-project_link-img_large.png -------------------------------------------------------------------------------- /public/images/home/common-project_link-img_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/common-project_link-img_medium.png -------------------------------------------------------------------------------- /public/images/home/common-project_link-img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/common-project_link-img_small.png -------------------------------------------------------------------------------- /public/images/home/iphone-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/iphone-frame.png -------------------------------------------------------------------------------- /public/images/home/mobile-chatting-sample-img_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/mobile-chatting-sample-img_medium.png -------------------------------------------------------------------------------- /public/images/home/mobile-chatting-sample-img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/mobile-chatting-sample-img_small.png -------------------------------------------------------------------------------- /public/images/home/mobile-team-list-sample-img_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/mobile-team-list-sample-img_medium.png -------------------------------------------------------------------------------- /public/images/home/mobile-team-list-sample-img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/mobile-team-list-sample-img_small.png -------------------------------------------------------------------------------- /public/images/home/pc-team-info-sample-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/pc-team-info-sample-img.png -------------------------------------------------------------------------------- /public/images/home/pc-team-list-sample-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/pc-team-list-sample-img.png -------------------------------------------------------------------------------- /public/images/home/pc-user-info-sample-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/pc-user-info-sample-img.png -------------------------------------------------------------------------------- /public/images/home/pc-user-list-sample-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/pc-user-list-sample-img.png -------------------------------------------------------------------------------- /public/images/home/specialization-project_animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/specialization-project_animation.png -------------------------------------------------------------------------------- /public/images/home/specialization-project_link-img_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/specialization-project_link-img_large.png -------------------------------------------------------------------------------- /public/images/home/specialization-project_link-img_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/specialization-project_link-img_medium.png -------------------------------------------------------------------------------- /public/images/home/specialization-project_link-img_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/home/specialization-project_link-img_small.png -------------------------------------------------------------------------------- /public/images/projects/ai-video_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/ai-video_animation.webp -------------------------------------------------------------------------------- /public/images/projects/ai-voice_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/ai-voice_animation.webp -------------------------------------------------------------------------------- /public/images/projects/bigdata-dispersion_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/bigdata-dispersion_animation.webp -------------------------------------------------------------------------------- /public/images/projects/bigdata-recommendation_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/bigdata-recommendation_animation.webp -------------------------------------------------------------------------------- /public/images/projects/blockchain-digital-money_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/blockchain-digital-money_animation.webp -------------------------------------------------------------------------------- /public/images/projects/blockchain-p2p_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/blockchain-p2p_animation.webp -------------------------------------------------------------------------------- /public/images/projects/iot_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/images/projects/iot_animation.webp -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/public/robots.txt -------------------------------------------------------------------------------- /readme_assets/after-web-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/after-web-optimization.png -------------------------------------------------------------------------------- /readme_assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/architecture.png -------------------------------------------------------------------------------- /readme_assets/before-web-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/before-web-optimization.png -------------------------------------------------------------------------------- /readme_assets/erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/erd.png -------------------------------------------------------------------------------- /readme_assets/ga-browser-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/ga-browser-graph.png -------------------------------------------------------------------------------- /readme_assets/ga-os-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/ga-os-graph.png -------------------------------------------------------------------------------- /readme_assets/ga-user-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/ga-user-graph.png -------------------------------------------------------------------------------- /readme_assets/google-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/google-search.png -------------------------------------------------------------------------------- /readme_assets/home-page-headingsmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/home-page-headingsmap.png -------------------------------------------------------------------------------- /readme_assets/seo-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/seo-score.png -------------------------------------------------------------------------------- /readme_assets/ssafy-mate_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/ssafy-mate_logo.png -------------------------------------------------------------------------------- /readme_assets/team-info-page-headingsmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/team-info-page-headingsmap.png -------------------------------------------------------------------------------- /readme_assets/team-list-page-headingsmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/readme_assets/team-list-page-headingsmap.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/account/AccountEditCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/AccountEditCard.tsx -------------------------------------------------------------------------------- /src/components/account/AccountEditTaps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/AccountEditTaps.tsx -------------------------------------------------------------------------------- /src/components/account/BasicInformationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/BasicInformationSection.tsx -------------------------------------------------------------------------------- /src/components/account/FindUserIdCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/FindUserIdCard.tsx -------------------------------------------------------------------------------- /src/components/account/NewPassWordCardSubHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/NewPassWordCardSubHead.tsx -------------------------------------------------------------------------------- /src/components/account/NewPasswordCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/NewPasswordCard.tsx -------------------------------------------------------------------------------- /src/components/account/ProfileInformationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/account/ProfileInformationSection.tsx -------------------------------------------------------------------------------- /src/components/chart/JobChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chart/JobChart.tsx -------------------------------------------------------------------------------- /src/components/chart/RecruitingStatusChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chart/RecruitingStatusChart.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatMessageBox.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatMessageSection.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatProfileHeaderbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatProfileHeaderbar.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatRoomItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatRoomItem.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatRoomListSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatRoomListSidebar.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/chat/ChatSection.tsx -------------------------------------------------------------------------------- /src/components/common/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/Alert.tsx -------------------------------------------------------------------------------- /src/components/common/ErrorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/ErrorSection.tsx -------------------------------------------------------------------------------- /src/components/common/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/Footer.tsx -------------------------------------------------------------------------------- /src/components/common/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/Header.tsx -------------------------------------------------------------------------------- /src/components/common/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/Loading.tsx -------------------------------------------------------------------------------- /src/components/common/LoadingCircular.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/LoadingCircular.tsx -------------------------------------------------------------------------------- /src/components/common/MenuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/MenuBar.tsx -------------------------------------------------------------------------------- /src/components/common/ProfileTechStackTagWithLevel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/ProfileTechStackTagWithLevel.tsx -------------------------------------------------------------------------------- /src/components/common/TechStackTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/TechStackTag.tsx -------------------------------------------------------------------------------- /src/components/common/TechStackTagWithLevel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/TechStackTagWithLevel.tsx -------------------------------------------------------------------------------- /src/components/common/VisuallyHiddenHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/VisuallyHiddenHead.tsx -------------------------------------------------------------------------------- /src/components/common/WarningMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/common/WarningMessage.tsx -------------------------------------------------------------------------------- /src/components/error/ErrorGuidanceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/error/ErrorGuidanceSection.tsx -------------------------------------------------------------------------------- /src/components/error/ErrorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/error/ErrorHeader.tsx -------------------------------------------------------------------------------- /src/components/home/common/ToTopButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/common/ToTopButton.tsx -------------------------------------------------------------------------------- /src/components/home/homeBanner/HomeBannerCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/homeBanner/HomeBannerCard.tsx -------------------------------------------------------------------------------- /src/components/home/homeBanner/HomeBannerContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/homeBanner/HomeBannerContainer.tsx -------------------------------------------------------------------------------- /src/components/home/projectLinks/ProjectLinkCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/projectLinks/ProjectLinkCard.tsx -------------------------------------------------------------------------------- /src/components/home/projectLinks/ProjectLinksContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/projectLinks/ProjectLinksContainer.tsx -------------------------------------------------------------------------------- /src/components/home/projectLinks/ProjectTrackDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/projectLinks/ProjectTrackDialog.tsx -------------------------------------------------------------------------------- /src/components/home/serviceIntro/IntroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/serviceIntro/IntroSection.tsx -------------------------------------------------------------------------------- /src/components/home/serviceIntro/MobileServiceIntroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/serviceIntro/MobileServiceIntroSection.tsx -------------------------------------------------------------------------------- /src/components/home/serviceIntro/PcBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/serviceIntro/PcBox.tsx -------------------------------------------------------------------------------- /src/components/home/serviceIntro/ServiceIntroContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/home/serviceIntro/ServiceIntroContainer.tsx -------------------------------------------------------------------------------- /src/components/policy/PrivacySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/policy/PrivacySection.tsx -------------------------------------------------------------------------------- /src/components/policy/TermsOfServiceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/policy/TermsOfServiceSection.tsx -------------------------------------------------------------------------------- /src/components/projects/navigation/ProjectPageNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/navigation/ProjectPageNavigation.tsx -------------------------------------------------------------------------------- /src/components/projects/projectTrackBanner/ProjectTrackBannerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/projectTrackBanner/ProjectTrackBannerSection.tsx -------------------------------------------------------------------------------- /src/components/projects/projectTrackBanner/ProjectTrackCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/projectTrackBanner/ProjectTrackCard.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/EmptyBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/EmptyBox.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/Pagenation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/Pagenation.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/RecruitStatusBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/RecruitStatusBadge.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/RecruitStatusTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/RecruitStatusTag.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/TeamItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/TeamItem.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/TeamRecruitmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/TeamRecruitmentSection.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/UserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/UserItem.tsx -------------------------------------------------------------------------------- /src/components/projects/recruitment/UserRecruitmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/recruitment/UserRecruitmentSection.tsx -------------------------------------------------------------------------------- /src/components/projects/requestList/EmptyRequestBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/requestList/EmptyRequestBox.tsx -------------------------------------------------------------------------------- /src/components/projects/requestList/ReceiveRequestListSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/requestList/ReceiveRequestListSection.tsx -------------------------------------------------------------------------------- /src/components/projects/requestList/RequestItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/requestList/RequestItem.tsx -------------------------------------------------------------------------------- /src/components/projects/requestList/SendRequestListSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/requestList/SendRequestListSection.tsx -------------------------------------------------------------------------------- /src/components/projects/searchForm/SearchFormWithTeams.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/searchForm/SearchFormWithTeams.tsx -------------------------------------------------------------------------------- /src/components/projects/searchForm/SearchFormWithUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/searchForm/SearchFormWithUsers.tsx -------------------------------------------------------------------------------- /src/components/projects/skeletonUI/SkeletonTeamItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/skeletonUI/SkeletonTeamItem.tsx -------------------------------------------------------------------------------- /src/components/projects/skeletonUI/SkeletonTeamRecruitmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/skeletonUI/SkeletonTeamRecruitmentSection.tsx -------------------------------------------------------------------------------- /src/components/projects/skeletonUI/SkeletonUserItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/skeletonUI/SkeletonUserItem.tsx -------------------------------------------------------------------------------- /src/components/projects/skeletonUI/SkeletonUserRecruitmentSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/projects/skeletonUI/SkeletonUserRecruitmentSection.tsx -------------------------------------------------------------------------------- /src/components/signIn/SignInCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signIn/SignInCard.tsx -------------------------------------------------------------------------------- /src/components/signUp/AuthForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signUp/AuthForm.tsx -------------------------------------------------------------------------------- /src/components/signUp/ProfileForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signUp/ProfileForm.tsx -------------------------------------------------------------------------------- /src/components/signUp/SignUpCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signUp/SignUpCard.tsx -------------------------------------------------------------------------------- /src/components/signUp/SignUpForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signUp/SignUpForm.tsx -------------------------------------------------------------------------------- /src/components/signUp/SignUpStepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/signUp/SignUpStepper.tsx -------------------------------------------------------------------------------- /src/components/team/TeamCreateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamCreateForm.tsx -------------------------------------------------------------------------------- /src/components/team/TeamEditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamEditForm.tsx -------------------------------------------------------------------------------- /src/components/team/TeamInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamInfoSection.tsx -------------------------------------------------------------------------------- /src/components/team/TeamMemberItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamMemberItem.tsx -------------------------------------------------------------------------------- /src/components/team/TeamMembersStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamMembersStatus.tsx -------------------------------------------------------------------------------- /src/components/team/TeamTechStackTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/TeamTechStackTag.tsx -------------------------------------------------------------------------------- /src/components/team/skeletonUI/SkeletonTeamInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/team/skeletonUI/SkeletonTeamInfoSection.tsx -------------------------------------------------------------------------------- /src/components/user/UserInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/user/UserInfoSection.tsx -------------------------------------------------------------------------------- /src/components/user/UserLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/user/UserLabel.tsx -------------------------------------------------------------------------------- /src/components/user/UserTechStackTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/user/UserTechStackTag.tsx -------------------------------------------------------------------------------- /src/components/user/skeletonUI/SkeletonUserInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/components/user/skeletonUI/SkeletonUserInfoSection.tsx -------------------------------------------------------------------------------- /src/data/jobListData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/data/jobListData.ts -------------------------------------------------------------------------------- /src/data/ssafyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/data/ssafyData.ts -------------------------------------------------------------------------------- /src/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/history.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useChatLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useChatLog.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useChatRoomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useChatRoomList.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useReceiveRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useReceiveRequests.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useSendChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useSendChat.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useSendRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useSendRequests.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useTeamInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useTeamInfo.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useTeamList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useTeamList.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useUserInfo.ts -------------------------------------------------------------------------------- /src/hooks/reactQueryHooks/useUserList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reactQueryHooks/useUserList.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useMyTeamTechStacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useMyTeamTechStacks.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useProfileInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useProfileInfo.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useProfileTeckStacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useProfileTeckStacks.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useProjectTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useProjectTrack.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useToken.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useUserId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useUserId.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useUserIdName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useUserIdName.ts -------------------------------------------------------------------------------- /src/hooks/reduxHooks/useUserProjectInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/reduxHooks/useUserProjectInfo.ts -------------------------------------------------------------------------------- /src/hooks/useDocumentTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useDocumentTitle.ts -------------------------------------------------------------------------------- /src/hooks/useMyTeamId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useMyTeamId.ts -------------------------------------------------------------------------------- /src/hooks/useOnScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useOnScreen.ts -------------------------------------------------------------------------------- /src/hooks/useSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useSocket.ts -------------------------------------------------------------------------------- /src/hooks/useTechStackList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useTechStackList.ts -------------------------------------------------------------------------------- /src/hooks/useTextArea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/hooks/useTextArea.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/mocks/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/browser.ts -------------------------------------------------------------------------------- /src/mocks/database/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/auth.ts -------------------------------------------------------------------------------- /src/mocks/database/chatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/chatting.ts -------------------------------------------------------------------------------- /src/mocks/database/signIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/signIn.ts -------------------------------------------------------------------------------- /src/mocks/database/team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/team.ts -------------------------------------------------------------------------------- /src/mocks/database/techstack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/techstack.ts -------------------------------------------------------------------------------- /src/mocks/database/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/database/user.ts -------------------------------------------------------------------------------- /src/mocks/handlers/authHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/authHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/chattingHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/chattingHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/findIdHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/findIdHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/newPasswordHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/newPasswordHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/requestsHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/requestsHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/signInHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/signInHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/teamsHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/teamsHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/techStacksHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/techStacksHandlers.ts -------------------------------------------------------------------------------- /src/mocks/handlers/usersHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/mocks/handlers/usersHandlers.ts -------------------------------------------------------------------------------- /src/pages/ChatPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/ChatPage.tsx -------------------------------------------------------------------------------- /src/pages/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/ErrorPage.tsx -------------------------------------------------------------------------------- /src/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/pages/SignInPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/SignInPage.tsx -------------------------------------------------------------------------------- /src/pages/SignUpPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/SignUpPage.tsx -------------------------------------------------------------------------------- /src/pages/policy/PrivacyPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/policy/PrivacyPage.tsx -------------------------------------------------------------------------------- /src/pages/policy/TermsOfServicePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/policy/TermsOfServicePage.tsx -------------------------------------------------------------------------------- /src/pages/projects/SpecializedProjectReceiveRequestListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/projects/SpecializedProjectReceiveRequestListPage.tsx -------------------------------------------------------------------------------- /src/pages/projects/SpecializedProjectSendRequestListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/projects/SpecializedProjectSendRequestListPage.tsx -------------------------------------------------------------------------------- /src/pages/projects/SpecializedProjectTeamListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/projects/SpecializedProjectTeamListPage.tsx -------------------------------------------------------------------------------- /src/pages/projects/SpecializedProjectUserListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/projects/SpecializedProjectUserListPage.tsx -------------------------------------------------------------------------------- /src/pages/projects/TeamCreatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/projects/TeamCreatePage.tsx -------------------------------------------------------------------------------- /src/pages/teams/TeamEditPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/teams/TeamEditPage.tsx -------------------------------------------------------------------------------- /src/pages/teams/TeamInfoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/teams/TeamInfoPage.tsx -------------------------------------------------------------------------------- /src/pages/users/AccountEditPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/users/AccountEditPage.tsx -------------------------------------------------------------------------------- /src/pages/users/FindUserIdPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/users/FindUserIdPage.tsx -------------------------------------------------------------------------------- /src/pages/users/NewPasswordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/users/NewPasswordPage.tsx -------------------------------------------------------------------------------- /src/pages/users/UserInfoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/pages/users/UserInfoPage.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | interface Window { 2 | Kakao: any; 3 | } 4 | -------------------------------------------------------------------------------- /src/redux/createReduxStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/createReduxStore.ts -------------------------------------------------------------------------------- /src/redux/modules/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/alert.ts -------------------------------------------------------------------------------- /src/redux/modules/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/auth.ts -------------------------------------------------------------------------------- /src/redux/modules/myTeam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/myTeam.ts -------------------------------------------------------------------------------- /src/redux/modules/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/profile.ts -------------------------------------------------------------------------------- /src/redux/modules/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/redux/modules/rootSaga.ts -------------------------------------------------------------------------------- /src/services/ChatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/ChatService.ts -------------------------------------------------------------------------------- /src/services/PersistReducerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/PersistReducerService.ts -------------------------------------------------------------------------------- /src/services/RequestService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/RequestService.ts -------------------------------------------------------------------------------- /src/services/TeamService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/TeamService.ts -------------------------------------------------------------------------------- /src/services/TechStackService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/TechStackService.ts -------------------------------------------------------------------------------- /src/services/TokenService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/TokenService.ts -------------------------------------------------------------------------------- /src/services/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/services/UserService.ts -------------------------------------------------------------------------------- /src/styles/commonStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/styles/commonStyles.ts -------------------------------------------------------------------------------- /src/styles/resetStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/styles/resetStyles.ts -------------------------------------------------------------------------------- /src/styles/sweetAlertStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/styles/sweetAlertStyles.ts -------------------------------------------------------------------------------- /src/types/accountTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/accountTypes.ts -------------------------------------------------------------------------------- /src/types/alertTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/alertTypes.ts -------------------------------------------------------------------------------- /src/types/authTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/authTypes.ts -------------------------------------------------------------------------------- /src/types/chartTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/chartTypes.ts -------------------------------------------------------------------------------- /src/types/commonTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/commonTypes.ts -------------------------------------------------------------------------------- /src/types/messageTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/messageTypes.ts -------------------------------------------------------------------------------- /src/types/signUpTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/signUpTypes.ts -------------------------------------------------------------------------------- /src/types/teamTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/teamTypes.ts -------------------------------------------------------------------------------- /src/types/userTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/types/userTypes.ts -------------------------------------------------------------------------------- /src/utils/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/utils/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/utils/axios.ts -------------------------------------------------------------------------------- /src/utils/regularExpressionData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/src/utils/regularExpressionData.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssafy-mate/ssafy-mate_front-end/HEAD/yarn.lock --------------------------------------------------------------------------------