├── .eslintrc.cjs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── sopt-리크루팅-issue.md ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml └── workflows │ └── action.yml ├── .gitignore ├── .prettierrc.json ├── README.md ├── index.html ├── manifest.webmanifest ├── package.json ├── patches └── lottie-react+2.4.1.patch ├── public ├── apple-touch-icon.png ├── favicon.ico ├── icon-192.png ├── icon-512.png ├── icon.svg ├── imgOg.png ├── logo_sopt.svg ├── makers-touch-icon.png ├── makersFavicon.ico ├── makersIcon.svg ├── makersOg.png ├── makers_192.png ├── makers_512.png ├── mockServiceWorker.js ├── soptRecrutingIcon.svg └── unsupported.css ├── src ├── App.tsx ├── __generated__ │ ├── api-schema.d.ts │ ├── api-spec.yml │ ├── api-types │ │ ├── Auth.ts │ │ ├── RecruitingAnswer.ts │ │ ├── RecruitingApplicant.ts │ │ ├── RecruitingAuth.ts │ │ ├── RecruitingQuestion.ts │ │ ├── RecruitingSeason.ts │ │ ├── data-contracts.ts │ │ └── http-client.ts │ ├── api.d.ts │ └── api.ts ├── common │ ├── apis │ │ ├── fetcher.ts │ │ ├── fileUpload.ts │ │ ├── getRecruitingInfo.ts │ │ └── tokenInstance.ts │ ├── assets │ │ ├── MakersDarkLogo.tsx │ │ ├── MakersLogo.tsx │ │ └── SoptLogo.tsx │ ├── components │ │ ├── Button │ │ │ ├── AmplitudeEventTrack.tsx │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── Callout │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── Checkbox │ │ │ ├── components │ │ │ │ └── Contentbox │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── Dialog │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── Input │ │ │ ├── apis.ts │ │ │ ├── components │ │ │ │ ├── Description │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ ├── InputButton │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── style.css.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── InputLine │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── style.css.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── formatBirthdate.ts │ │ │ │ │ │ ├── formatPhoneNumber.ts │ │ │ │ │ │ ├── validateBirthdate.ts │ │ │ │ │ │ └── validatePasswordConfirm.ts │ │ │ │ ├── InputTheme │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ ├── TextBox │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ └── Timer │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── style.css.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils │ │ │ │ │ └── formatTimer.ts │ │ │ ├── constants.ts │ │ │ ├── hooks │ │ │ │ ├── useMutateCheckCode.tsx │ │ │ │ ├── useMutateCheckUser.tsx │ │ │ │ └── useMutateSendCode.tsx │ │ │ ├── index.tsx │ │ │ └── types.ts │ │ ├── Layout │ │ │ ├── components │ │ │ │ ├── Footer │ │ │ │ │ ├── constants.tsx │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── IconArrowRight.tsx │ │ │ │ │ │ ├── IconFacebook.tsx │ │ │ │ │ │ ├── IconInstagram.tsx │ │ │ │ │ │ ├── IconKakaotalk.tsx │ │ │ │ │ │ ├── IconMail.tsx │ │ │ │ │ │ └── IconYoutube.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ ├── Head │ │ │ │ │ └── index.tsx │ │ │ │ ├── Header │ │ │ │ │ ├── Nav │ │ │ │ │ │ ├── MenuItem │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── style.css.ts │ │ │ │ │ │ ├── MenuList │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── style.css.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── style.css.ts │ │ │ │ │ ├── contants.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ └── ScrollToTop.tsx │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── Radio │ │ │ ├── components │ │ │ │ ├── Container │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ ├── ErrorMessage │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ └── Option │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ └── index.tsx │ │ ├── Select │ │ │ ├── index.tsx │ │ │ ├── style.css.ts │ │ │ └── type.ts │ │ ├── Textarea │ │ │ ├── components │ │ │ │ ├── Input │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ │ └── Label │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── style.css.ts │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ └── Title │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ ├── constants │ │ ├── policy.ts │ │ ├── styleValues.ts │ │ ├── validationCheck.ts │ │ └── zIndex.ts │ ├── hooks │ │ ├── useCheckBrowser.ts │ │ ├── useDate.tsx │ │ ├── useDevice.ts │ │ ├── useDialog.tsx │ │ ├── useEventListener.tsx │ │ ├── useGetRecruitingInfo.tsx │ │ ├── useScrollPosition.tsx │ │ ├── useScrollToHash.ts │ │ └── useVerificationStatus.tsx │ ├── type │ │ ├── errorResponse.ts │ │ └── recruitingInfo.ts │ └── utils │ │ └── dateFormatter.ts ├── constants │ └── mode.ts ├── contexts │ ├── DeviceTypeProvider.tsx │ ├── RecruitingInfoProvider.tsx │ └── ThemeProvider.tsx ├── main.tsx ├── mocks │ ├── browser.ts │ └── handlers.ts ├── styles │ ├── animation.css.ts │ ├── reset.css.ts │ └── theme.css.ts ├── tests │ ├── setupTests.ts │ └── test-utils.tsx ├── views │ ├── ApplyPage │ │ ├── apis.ts │ │ ├── components │ │ │ ├── ApplyCategory │ │ │ │ ├── constant.ts │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── ApplyHeader │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── ApplyInfo │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── BottomSection │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── CommonSection │ │ │ │ └── index.tsx │ │ │ ├── DefaultSection │ │ │ │ ├── components │ │ │ │ │ └── Postcode │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── icons │ │ │ │ │ └── IconUser.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── style.css.ts │ │ │ │ └── utils.ts │ │ │ ├── FileInput │ │ │ │ ├── icons │ │ │ │ │ └── IconPlusButton.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── Info │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ ├── LinkInput │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ └── PartSection │ │ │ │ ├── constants.ts │ │ │ │ ├── index.tsx │ │ │ │ └── types.ts │ │ ├── constant.ts │ │ ├── hooks │ │ │ ├── useBeforeExitPageAlert.tsx │ │ │ ├── useGetDraft.tsx │ │ │ ├── useGetQuestions.tsx │ │ │ ├── useMutateDraft.tsx │ │ │ └── useMutateSubmit.tsx │ │ ├── index.tsx │ │ ├── style.css.ts │ │ └── types.ts │ ├── CompletePage │ │ ├── apis.ts │ │ ├── components │ │ │ └── Survey.tsx │ │ ├── hooks │ │ │ └── useMutateSatisfaction.ts │ │ ├── icons │ │ │ └── IconCheckmark.tsx │ │ ├── index.tsx │ │ ├── style.css.ts │ │ └── types.ts │ ├── ErrorPage │ │ ├── components │ │ │ ├── ErrorCode │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ └── NoMore │ │ │ │ └── index.tsx │ │ ├── constants.ts │ │ ├── icons │ │ │ ├── Icon404Back.tsx │ │ │ ├── Icon404Front.tsx │ │ │ ├── Icon500Back.tsx │ │ │ ├── Icon500Front.tsx │ │ │ ├── IconCone.tsx │ │ │ └── IconGhost.tsx │ │ ├── index.tsx │ │ └── style.css.ts │ ├── MainPage │ │ └── index.tsx │ ├── MyPage │ │ ├── index.tsx │ │ └── style.css.ts │ ├── PasswordPage │ │ ├── apis.ts │ │ ├── components │ │ │ └── PasswordForm │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ ├── hooks │ │ │ └── useMutateChangePassword.tsx │ │ ├── index.tsx │ │ ├── style.css.ts │ │ └── types.ts │ ├── ResultPage │ │ ├── apis.ts │ │ ├── assets │ │ │ ├── IconMakersLogo.tsx │ │ │ └── IconSoptRecrutingLogo.tsx │ │ ├── components │ │ │ ├── FinalResult.tsx │ │ │ ├── ScreeningResult.tsx │ │ │ └── style.css.ts │ │ ├── hooks │ │ │ ├── useGetFinalResult.tsx │ │ │ └── useGetScreeningResult.tsx │ │ ├── index.tsx │ │ └── types.ts │ ├── ReviewPage │ │ └── index.tsx │ ├── SignInPage │ │ ├── apis.ts │ │ ├── components │ │ │ ├── SignInForm │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ │ └── SignInInfo │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ ├── hooks │ │ │ └── useMutateSignIn.tsx │ │ ├── index.tsx │ │ ├── style.css.ts │ │ └── types.ts │ ├── SignedInPage │ │ ├── apis.ts │ │ ├── hooks │ │ │ └── useGetMyInfo.tsx │ │ ├── index.tsx │ │ └── types.ts │ ├── SignupPage │ │ ├── apis.ts │ │ ├── components │ │ │ └── SignupForm │ │ │ │ ├── index.tsx │ │ │ │ └── style.css.ts │ │ ├── hooks │ │ │ └── useMutateSignUp.tsx │ │ ├── index.tsx │ │ ├── style.css.ts │ │ └── types.ts │ ├── UnsupportedPage │ │ ├── assets │ │ │ ├── ChromeIcon.tsx │ │ │ ├── EdgeIcon.tsx │ │ │ ├── FirefoxIcon.tsx │ │ │ └── SafariIcon.tsx │ │ ├── index.tsx │ │ ├── pre-render.tsx │ │ ├── style.css.ts │ │ ├── supportedBrowsers.ts │ │ └── utils │ │ │ └── checkBrowser.ts │ ├── dialogs │ │ ├── CompleteDialog │ │ │ └── index.tsx │ │ ├── DraftDialog │ │ │ └── index.tsx │ │ ├── ExistingApplicantDialog │ │ │ └── index.tsx │ │ ├── ExitDialog │ │ │ └── index.tsx │ │ ├── PreventApplyDialog │ │ │ └── index.tsx │ │ ├── PreventReviewDialog │ │ │ └── index.tsx │ │ ├── SessionExpiredDialog │ │ │ └── index.tsx │ │ ├── SubmitDialog │ │ │ ├── index.tsx │ │ │ └── style.css.ts │ │ ├── index.tsx │ │ └── style.css.ts │ ├── email │ │ ├── auth.html │ │ ├── complete.html │ │ └── iconLogo.svg │ └── loadings │ │ ├── BigLoding │ │ ├── index.tsx │ │ └── style.css.ts │ │ ├── ButtonLoading │ │ └── index.tsx │ │ └── lotties │ │ ├── buttonLoadingWhite.json │ │ └── mainLoading.json └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sopt-리크루팅-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.github/ISSUE_TEMPLATE/sopt-리크루팅-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/index.html -------------------------------------------------------------------------------- /manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/manifest.webmanifest -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/package.json -------------------------------------------------------------------------------- /patches/lottie-react+2.4.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/patches/lottie-react+2.4.1.patch -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/icon-192.png -------------------------------------------------------------------------------- /public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/icon-512.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/imgOg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/imgOg.png -------------------------------------------------------------------------------- /public/logo_sopt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/logo_sopt.svg -------------------------------------------------------------------------------- /public/makers-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makers-touch-icon.png -------------------------------------------------------------------------------- /public/makersFavicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makersFavicon.ico -------------------------------------------------------------------------------- /public/makersIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makersIcon.svg -------------------------------------------------------------------------------- /public/makersOg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makersOg.png -------------------------------------------------------------------------------- /public/makers_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makers_192.png -------------------------------------------------------------------------------- /public/makers_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/makers_512.png -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/soptRecrutingIcon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/unsupported.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/public/unsupported.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/__generated__/api-schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-schema.d.ts -------------------------------------------------------------------------------- /src/__generated__/api-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-spec.yml -------------------------------------------------------------------------------- /src/__generated__/api-types/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/Auth.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/RecruitingAnswer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/RecruitingAnswer.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/RecruitingApplicant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/RecruitingApplicant.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/RecruitingAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/RecruitingAuth.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/RecruitingQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/RecruitingQuestion.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/RecruitingSeason.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/RecruitingSeason.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/data-contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/data-contracts.ts -------------------------------------------------------------------------------- /src/__generated__/api-types/http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api-types/http-client.ts -------------------------------------------------------------------------------- /src/__generated__/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api.d.ts -------------------------------------------------------------------------------- /src/__generated__/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/__generated__/api.ts -------------------------------------------------------------------------------- /src/common/apis/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/apis/fetcher.ts -------------------------------------------------------------------------------- /src/common/apis/fileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/apis/fileUpload.ts -------------------------------------------------------------------------------- /src/common/apis/getRecruitingInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/apis/getRecruitingInfo.ts -------------------------------------------------------------------------------- /src/common/apis/tokenInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/apis/tokenInstance.ts -------------------------------------------------------------------------------- /src/common/assets/MakersDarkLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/assets/MakersDarkLogo.tsx -------------------------------------------------------------------------------- /src/common/assets/MakersLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/assets/MakersLogo.tsx -------------------------------------------------------------------------------- /src/common/assets/SoptLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/assets/SoptLogo.tsx -------------------------------------------------------------------------------- /src/common/components/Button/AmplitudeEventTrack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Button/AmplitudeEventTrack.tsx -------------------------------------------------------------------------------- /src/common/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Button/index.tsx -------------------------------------------------------------------------------- /src/common/components/Button/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Button/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Callout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Callout/index.tsx -------------------------------------------------------------------------------- /src/common/components/Callout/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Callout/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Checkbox/components/Contentbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Checkbox/components/Contentbox/index.tsx -------------------------------------------------------------------------------- /src/common/components/Checkbox/components/Contentbox/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Checkbox/components/Contentbox/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/common/components/Checkbox/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Checkbox/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Dialog/index.tsx -------------------------------------------------------------------------------- /src/common/components/Dialog/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Dialog/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/apis.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/Description/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Description/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/Description/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Description/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputButton/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/InputButton/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputButton/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputButton/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputButton/types.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/utils/formatBirthdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/utils/formatBirthdate.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/utils/formatPhoneNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/utils/formatPhoneNumber.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/utils/validateBirthdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/utils/validateBirthdate.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputLine/utils/validatePasswordConfirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputLine/utils/validatePasswordConfirm.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/InputTheme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputTheme/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/InputTheme/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/InputTheme/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/TextBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/TextBox/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/TextBox/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/TextBox/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/Timer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Timer/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/components/Timer/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Timer/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/Timer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Timer/types.ts -------------------------------------------------------------------------------- /src/common/components/Input/components/Timer/utils/formatTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/components/Timer/utils/formatTimer.ts -------------------------------------------------------------------------------- /src/common/components/Input/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/constants.ts -------------------------------------------------------------------------------- /src/common/components/Input/hooks/useMutateCheckCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/hooks/useMutateCheckCode.tsx -------------------------------------------------------------------------------- /src/common/components/Input/hooks/useMutateCheckUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/hooks/useMutateCheckUser.tsx -------------------------------------------------------------------------------- /src/common/components/Input/hooks/useMutateSendCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/hooks/useMutateSendCode.tsx -------------------------------------------------------------------------------- /src/common/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/index.tsx -------------------------------------------------------------------------------- /src/common/components/Input/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Input/types.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/constants.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconArrowRight.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconFacebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconFacebook.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconInstagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconInstagram.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconKakaotalk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconKakaotalk.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconMail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconMail.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/icons/IconYoutube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/icons/IconYoutube.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Footer/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Footer/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Head/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Head/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/MenuItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/MenuItem/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/MenuItem/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/MenuItem/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/MenuList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/MenuList/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/MenuList/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/MenuList/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/Nav/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/Nav/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/contants.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/components/Header/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/Header/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Layout/components/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/components/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/index.tsx -------------------------------------------------------------------------------- /src/common/components/Layout/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Layout/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Radio/components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/Container/index.tsx -------------------------------------------------------------------------------- /src/common/components/Radio/components/Container/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/Container/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Radio/components/ErrorMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/ErrorMessage/index.tsx -------------------------------------------------------------------------------- /src/common/components/Radio/components/ErrorMessage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/ErrorMessage/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Radio/components/Option/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/Option/index.tsx -------------------------------------------------------------------------------- /src/common/components/Radio/components/Option/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/components/Option/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Radio/index.tsx -------------------------------------------------------------------------------- /src/common/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Select/index.tsx -------------------------------------------------------------------------------- /src/common/components/Select/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Select/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Select/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Select/type.ts -------------------------------------------------------------------------------- /src/common/components/Textarea/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/components/Input/index.tsx -------------------------------------------------------------------------------- /src/common/components/Textarea/components/Input/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/components/Input/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Textarea/components/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/components/Label/index.tsx -------------------------------------------------------------------------------- /src/common/components/Textarea/components/Label/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/components/Label/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/index.tsx -------------------------------------------------------------------------------- /src/common/components/Textarea/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Textarea/style.css.ts -------------------------------------------------------------------------------- /src/common/components/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Title/index.tsx -------------------------------------------------------------------------------- /src/common/components/Title/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/components/Title/style.css.ts -------------------------------------------------------------------------------- /src/common/constants/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/constants/policy.ts -------------------------------------------------------------------------------- /src/common/constants/styleValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/constants/styleValues.ts -------------------------------------------------------------------------------- /src/common/constants/validationCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/constants/validationCheck.ts -------------------------------------------------------------------------------- /src/common/constants/zIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/constants/zIndex.ts -------------------------------------------------------------------------------- /src/common/hooks/useCheckBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useCheckBrowser.ts -------------------------------------------------------------------------------- /src/common/hooks/useDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useDate.tsx -------------------------------------------------------------------------------- /src/common/hooks/useDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useDevice.ts -------------------------------------------------------------------------------- /src/common/hooks/useDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useDialog.tsx -------------------------------------------------------------------------------- /src/common/hooks/useEventListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useEventListener.tsx -------------------------------------------------------------------------------- /src/common/hooks/useGetRecruitingInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useGetRecruitingInfo.tsx -------------------------------------------------------------------------------- /src/common/hooks/useScrollPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useScrollPosition.tsx -------------------------------------------------------------------------------- /src/common/hooks/useScrollToHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useScrollToHash.ts -------------------------------------------------------------------------------- /src/common/hooks/useVerificationStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/hooks/useVerificationStatus.tsx -------------------------------------------------------------------------------- /src/common/type/errorResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/type/errorResponse.ts -------------------------------------------------------------------------------- /src/common/type/recruitingInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/type/recruitingInfo.ts -------------------------------------------------------------------------------- /src/common/utils/dateFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/common/utils/dateFormatter.ts -------------------------------------------------------------------------------- /src/constants/mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/constants/mode.ts -------------------------------------------------------------------------------- /src/contexts/DeviceTypeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/contexts/DeviceTypeProvider.tsx -------------------------------------------------------------------------------- /src/contexts/RecruitingInfoProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/contexts/RecruitingInfoProvider.tsx -------------------------------------------------------------------------------- /src/contexts/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/contexts/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/mocks/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/mocks/browser.ts -------------------------------------------------------------------------------- /src/mocks/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/mocks/handlers.ts -------------------------------------------------------------------------------- /src/styles/animation.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/styles/animation.css.ts -------------------------------------------------------------------------------- /src/styles/reset.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/styles/reset.css.ts -------------------------------------------------------------------------------- /src/styles/theme.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/styles/theme.css.ts -------------------------------------------------------------------------------- /src/tests/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/tests/setupTests.ts -------------------------------------------------------------------------------- /src/tests/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/tests/test-utils.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/apis.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyCategory/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyCategory/constant.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyCategory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyCategory/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyCategory/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyCategory/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyHeader/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyHeader/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyHeader/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyInfo/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/ApplyInfo/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/ApplyInfo/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/BottomSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/BottomSection/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/BottomSection/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/BottomSection/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/CommonSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/CommonSection/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/components/Postcode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/components/Postcode/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/constants.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/icons/IconUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/icons/IconUser.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/DefaultSection/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/DefaultSection/utils.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/FileInput/icons/IconPlusButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/FileInput/icons/IconPlusButton.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/FileInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/FileInput/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/FileInput/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/FileInput/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/Info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/Info/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/Info/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/Info/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/LinkInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/LinkInput/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/LinkInput/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/LinkInput/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/PartSection/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/PartSection/constants.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/components/PartSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/PartSection/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/components/PartSection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/components/PartSection/types.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/constant.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/hooks/useBeforeExitPageAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/hooks/useBeforeExitPageAlert.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/hooks/useGetDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/hooks/useGetDraft.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/hooks/useGetQuestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/hooks/useGetQuestions.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/hooks/useMutateDraft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/hooks/useMutateDraft.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/hooks/useMutateSubmit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/hooks/useMutateSubmit.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/index.tsx -------------------------------------------------------------------------------- /src/views/ApplyPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/style.css.ts -------------------------------------------------------------------------------- /src/views/ApplyPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ApplyPage/types.ts -------------------------------------------------------------------------------- /src/views/CompletePage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/apis.ts -------------------------------------------------------------------------------- /src/views/CompletePage/components/Survey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/components/Survey.tsx -------------------------------------------------------------------------------- /src/views/CompletePage/hooks/useMutateSatisfaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/hooks/useMutateSatisfaction.ts -------------------------------------------------------------------------------- /src/views/CompletePage/icons/IconCheckmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/icons/IconCheckmark.tsx -------------------------------------------------------------------------------- /src/views/CompletePage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/index.tsx -------------------------------------------------------------------------------- /src/views/CompletePage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/style.css.ts -------------------------------------------------------------------------------- /src/views/CompletePage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/CompletePage/types.ts -------------------------------------------------------------------------------- /src/views/ErrorPage/components/ErrorCode/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/components/ErrorCode/index.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/components/ErrorCode/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/components/ErrorCode/style.css.ts -------------------------------------------------------------------------------- /src/views/ErrorPage/components/NoMore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/components/NoMore/index.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/constants.ts -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/Icon404Back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/Icon404Back.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/Icon404Front.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/Icon404Front.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/Icon500Back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/Icon500Back.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/Icon500Front.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/Icon500Front.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/IconCone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/IconCone.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/icons/IconGhost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/icons/IconGhost.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/index.tsx -------------------------------------------------------------------------------- /src/views/ErrorPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ErrorPage/style.css.ts -------------------------------------------------------------------------------- /src/views/MainPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/MainPage/index.tsx -------------------------------------------------------------------------------- /src/views/MyPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/MyPage/index.tsx -------------------------------------------------------------------------------- /src/views/MyPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/MyPage/style.css.ts -------------------------------------------------------------------------------- /src/views/PasswordPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/apis.ts -------------------------------------------------------------------------------- /src/views/PasswordPage/components/PasswordForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/components/PasswordForm/index.tsx -------------------------------------------------------------------------------- /src/views/PasswordPage/components/PasswordForm/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/components/PasswordForm/style.css.ts -------------------------------------------------------------------------------- /src/views/PasswordPage/hooks/useMutateChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/hooks/useMutateChangePassword.tsx -------------------------------------------------------------------------------- /src/views/PasswordPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/index.tsx -------------------------------------------------------------------------------- /src/views/PasswordPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/style.css.ts -------------------------------------------------------------------------------- /src/views/PasswordPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/PasswordPage/types.ts -------------------------------------------------------------------------------- /src/views/ResultPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/apis.ts -------------------------------------------------------------------------------- /src/views/ResultPage/assets/IconMakersLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/assets/IconMakersLogo.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/assets/IconSoptRecrutingLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/assets/IconSoptRecrutingLogo.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/components/FinalResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/components/FinalResult.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/components/ScreeningResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/components/ScreeningResult.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/components/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/components/style.css.ts -------------------------------------------------------------------------------- /src/views/ResultPage/hooks/useGetFinalResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/hooks/useGetFinalResult.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/hooks/useGetScreeningResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/hooks/useGetScreeningResult.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/index.tsx -------------------------------------------------------------------------------- /src/views/ResultPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ResultPage/types.ts -------------------------------------------------------------------------------- /src/views/ReviewPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/ReviewPage/index.tsx -------------------------------------------------------------------------------- /src/views/SignInPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/apis.ts -------------------------------------------------------------------------------- /src/views/SignInPage/components/SignInForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/components/SignInForm/index.tsx -------------------------------------------------------------------------------- /src/views/SignInPage/components/SignInForm/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/components/SignInForm/style.css.ts -------------------------------------------------------------------------------- /src/views/SignInPage/components/SignInInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/components/SignInInfo/index.tsx -------------------------------------------------------------------------------- /src/views/SignInPage/components/SignInInfo/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/components/SignInInfo/style.css.ts -------------------------------------------------------------------------------- /src/views/SignInPage/hooks/useMutateSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/hooks/useMutateSignIn.tsx -------------------------------------------------------------------------------- /src/views/SignInPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/index.tsx -------------------------------------------------------------------------------- /src/views/SignInPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/style.css.ts -------------------------------------------------------------------------------- /src/views/SignInPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignInPage/types.ts -------------------------------------------------------------------------------- /src/views/SignedInPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignedInPage/apis.ts -------------------------------------------------------------------------------- /src/views/SignedInPage/hooks/useGetMyInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignedInPage/hooks/useGetMyInfo.tsx -------------------------------------------------------------------------------- /src/views/SignedInPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignedInPage/index.tsx -------------------------------------------------------------------------------- /src/views/SignedInPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignedInPage/types.ts -------------------------------------------------------------------------------- /src/views/SignupPage/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/apis.ts -------------------------------------------------------------------------------- /src/views/SignupPage/components/SignupForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/components/SignupForm/index.tsx -------------------------------------------------------------------------------- /src/views/SignupPage/components/SignupForm/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/components/SignupForm/style.css.ts -------------------------------------------------------------------------------- /src/views/SignupPage/hooks/useMutateSignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/hooks/useMutateSignUp.tsx -------------------------------------------------------------------------------- /src/views/SignupPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/index.tsx -------------------------------------------------------------------------------- /src/views/SignupPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/style.css.ts -------------------------------------------------------------------------------- /src/views/SignupPage/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/SignupPage/types.ts -------------------------------------------------------------------------------- /src/views/UnsupportedPage/assets/ChromeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/assets/ChromeIcon.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/assets/EdgeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/assets/EdgeIcon.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/assets/FirefoxIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/assets/FirefoxIcon.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/assets/SafariIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/assets/SafariIcon.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/index.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/pre-render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/pre-render.tsx -------------------------------------------------------------------------------- /src/views/UnsupportedPage/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/style.css.ts -------------------------------------------------------------------------------- /src/views/UnsupportedPage/supportedBrowsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/supportedBrowsers.ts -------------------------------------------------------------------------------- /src/views/UnsupportedPage/utils/checkBrowser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/UnsupportedPage/utils/checkBrowser.ts -------------------------------------------------------------------------------- /src/views/dialogs/CompleteDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/CompleteDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/DraftDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/DraftDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/ExistingApplicantDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/ExistingApplicantDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/ExitDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/ExitDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/PreventApplyDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/PreventApplyDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/PreventReviewDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/PreventReviewDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/SessionExpiredDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/SessionExpiredDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/SubmitDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/SubmitDialog/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/SubmitDialog/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/SubmitDialog/style.css.ts -------------------------------------------------------------------------------- /src/views/dialogs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/index.tsx -------------------------------------------------------------------------------- /src/views/dialogs/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/dialogs/style.css.ts -------------------------------------------------------------------------------- /src/views/email/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/email/auth.html -------------------------------------------------------------------------------- /src/views/email/complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/email/complete.html -------------------------------------------------------------------------------- /src/views/email/iconLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/email/iconLogo.svg -------------------------------------------------------------------------------- /src/views/loadings/BigLoding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/loadings/BigLoding/index.tsx -------------------------------------------------------------------------------- /src/views/loadings/BigLoding/style.css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/loadings/BigLoding/style.css.ts -------------------------------------------------------------------------------- /src/views/loadings/ButtonLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/loadings/ButtonLoading/index.tsx -------------------------------------------------------------------------------- /src/views/loadings/lotties/buttonLoadingWhite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/loadings/lotties/buttonLoadingWhite.json -------------------------------------------------------------------------------- /src/views/loadings/lotties/mainLoading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/src/views/loadings/lotties/mainLoading.json -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare const __IS_MAKERS__: boolean; 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sopt-makers/sopt-recruiting-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------