├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ └── release_tag.yml ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .vscode └── settings.json ├── README.md ├── components ├── bookNote │ ├── BookNoteHeader.tsx │ ├── ExampleDrawerBtn.tsx │ ├── ExitModal.tsx │ ├── Navigation.tsx │ ├── SavePoint.tsx │ ├── StepUpBtn.tsx │ ├── detail │ │ ├── DetailArticleWrapper.tsx │ │ ├── DetailArticleWrapperLabeling.tsx │ │ ├── ExamplePeriNote.tsx │ │ ├── ExamplePeriQuestion.tsx │ │ ├── ExamplePreNote.tsx │ │ ├── ExamplePreNoteLabeling.tsx │ │ └── index.ts │ ├── drawer │ │ ├── DrawerHeader.tsx │ │ ├── DrawerWrapper.tsx │ │ ├── PeriNoteExample.tsx │ │ └── PreNoteQa.tsx │ ├── index.ts │ ├── periNote │ │ ├── ChildQANode.tsx │ │ ├── Complete.tsx │ │ ├── HeaderLabel.tsx │ │ ├── PeriNote.tsx │ │ ├── PeriNotePostSection.tsx │ │ ├── TopAnswerContainer.tsx │ │ ├── TopQuestionContainer.tsx │ │ └── index.ts │ ├── preNote │ │ ├── InputQuestion.tsx │ │ ├── LinkToSignUpSection.tsx │ │ ├── PreNote.tsx │ │ ├── PreNoteFormContainer.tsx │ │ ├── PreNotePostSection.tsx │ │ ├── PreNoteThirdArticle.tsx │ │ └── index.ts │ ├── stepUp │ │ ├── CarouselDots.tsx │ │ ├── StepUpContentWrapper.tsx │ │ └── StepUpLayout.tsx │ └── styled │ │ └── DetailBookNote.styled.ts ├── bookcase │ ├── Cards.tsx │ ├── Navigation.tsx │ ├── NoCards.tsx │ ├── addBook │ │ ├── AddBookDefault.tsx │ │ ├── AlertToast.tsx │ │ ├── BookEmpty.tsx │ │ ├── BookInfoWrapper.tsx │ │ ├── BookList.tsx │ │ ├── ModalWrapper.tsx │ │ ├── SearchBar.tsx │ │ ├── ShowModal.tsx │ │ └── StickyHeader.tsx │ ├── cardSection │ │ ├── AddBookCard.tsx │ │ ├── BookCard.tsx │ │ └── Empty.tsx │ └── index.ts ├── common │ ├── AlertLabel.tsx │ ├── Empty.tsx │ ├── Error404.tsx │ ├── InputEmail.tsx │ ├── InputPwd.tsx │ ├── LabelQuestion.tsx │ ├── Loading.tsx │ ├── NavHeader.tsx │ ├── NavWrapper.tsx │ ├── PopUpDelete.tsx │ ├── index.ts │ └── styled │ │ ├── BookModalWrapper.tsx │ │ ├── Button.tsx │ │ ├── Icon.tsx │ │ ├── Img.tsx │ │ ├── Input.tsx │ │ ├── LabelHidden.tsx │ │ ├── Landing.tsx │ │ ├── Link.tsx │ │ ├── MenuWrapper.tsx │ │ ├── MobileLanding.tsx │ │ ├── NoteModalWrapper.tsx │ │ ├── PopUp.tsx │ │ ├── Question.tsx │ │ ├── Signup.tsx │ │ ├── StepModalWrapper.tsx │ │ └── Toggle.tsx ├── icons │ ├── NavHeaderIcons.tsx │ └── NavWrapperIcons.tsx ├── landing │ ├── LandingCard.tsx │ ├── LandingExperiment.tsx │ ├── LandingFooter.tsx │ ├── LandingHeader.tsx │ ├── LandingInfo.tsx │ ├── LandingMotivation.tsx │ ├── LandingSuggestion.tsx │ ├── LandingValidation.tsx │ ├── MobileLandingCard.tsx │ ├── MobileLandingExperiment.tsx │ ├── MobileLandingFooter.tsx │ ├── MobileLandingHeader.tsx │ ├── MobileLandingInfo.tsx │ ├── MobileLandingMotivation.tsx │ ├── MobileLandingSuggestion.tsx │ ├── MobileLandingValidation.tsx │ └── index.ts ├── layout │ ├── CommonLayout.tsx │ ├── MainLayout.tsx │ └── index.ts ├── login │ ├── LoginForm.tsx │ ├── LoginNavSection.tsx │ ├── PwdSightIcon.tsx │ └── index.ts ├── main │ ├── Banner.tsx │ ├── MainHeader.tsx │ ├── RecentBooks.tsx │ └── index.ts ├── myPage │ ├── BookComment.tsx │ ├── ServiceContent.tsx │ ├── TopBanner.tsx │ ├── UserContent.tsx │ ├── WithdrawContent.tsx │ ├── WithdrawContentComplete.tsx │ ├── WithdrawContentConfirm.tsx │ └── index.ts └── signup │ ├── LastStep.tsx │ ├── PasswordInput.tsx │ ├── SignupForm.tsx │ └── index.ts ├── core ├── api │ ├── api.ts │ ├── auth │ │ └── .keep │ ├── axios.ts │ ├── book │ │ └── .keep │ ├── review │ │ └── index.ts │ └── user │ │ └── .keep ├── atom │ ├── bookNote.ts │ └── index.ts ├── constant │ └── bookNote │ │ ├── childNodeLabelColor.ts │ │ └── exampleData.ts └── localStorage.ts ├── mocks ├── browser.ts ├── handlers │ ├── index.ts │ └── review.ts ├── index.ts └── server.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── book-note │ ├── [reviewId] │ │ ├── detail.tsx │ │ └── index.tsx │ └── example.tsx ├── bookcase │ ├── add-book.tsx │ └── index.tsx ├── index.tsx ├── login.tsx ├── main.tsx ├── my-page.tsx ├── secret-test.tsx ├── signup │ ├── index.tsx │ └── welcome.tsx └── to-be.tsx ├── public ├── assets │ ├── asset.d.ts │ ├── icons │ │ ├── 404Icon.svg │ │ ├── alertIcon.svg │ │ ├── binIcon.svg │ │ ├── bookcaseIcon.svg │ │ ├── cancelIcon.svg │ │ ├── cancelIconBlack.svg │ │ ├── cancelIconWhite.svg │ │ ├── checkIcon.svg │ │ ├── checkSaveIcon.svg │ │ ├── deleteIcon.svg │ │ ├── deleteNoteIcon.svg │ │ ├── detailIcon.svg │ │ ├── editProfileIcon.svg │ │ ├── guideIcon.svg │ │ ├── homeIcon.svg │ │ ├── index.ts │ │ ├── landingFooterIcon.svg │ │ ├── landingIcon01.svg │ │ ├── landingIcon02.svg │ │ ├── landingIcon03.svg │ │ ├── landingMobileFour01.svg │ │ ├── landingMobileFour02.svg │ │ ├── landingMobileHeader.svg │ │ ├── landingMobileIcon01.svg │ │ ├── landingMobileIcon02.svg │ │ ├── landingMobileIcon03.svg │ │ ├── landingMobileMark.svg │ │ ├── landingMobileThree.svg │ │ ├── leftArrowIcon.svg │ │ ├── logoIcon.svg │ │ ├── mainLogoIcon.svg │ │ ├── modifyNoteIcon.svg │ │ ├── moreIcon.svg │ │ ├── myPageIcon.svg │ │ ├── noSightIcon.svg │ │ ├── periAnswerIcon.svg │ │ ├── periQuestionIcon.svg │ │ ├── rightArrowIcon.svg │ │ ├── saveIcon.svg │ │ ├── searchIcon.svg │ │ ├── sightIcon.svg │ │ ├── signupCheckingIcon.svg │ │ ├── titleLogoIcon.svg │ │ ├── toBeIcon.svg │ │ ├── toastAlertIcon.svg │ │ └── toggleIcon.svg │ └── images │ │ ├── addBookSearchImage.png │ │ ├── addBooksImage.png │ │ ├── deleteImage.png │ │ ├── deviceImage.png │ │ ├── drawerImage.png │ │ ├── drawerImageSmall.png │ │ ├── emptyBookImage.png │ │ ├── exitImage.png │ │ ├── index.ts │ │ ├── landingBookNoteImage.png │ │ ├── landingBookcaseImage.png │ │ ├── landingImage01.png │ │ ├── landingImage02.png │ │ ├── landingMobileBanner.png │ │ ├── landingTabletBanner.png │ │ ├── loadingGif.gif │ │ ├── loginImage.png │ │ ├── mainBannerImage.png │ │ ├── mypageBannerImage.png │ │ ├── mypageReadImage.png │ │ ├── periNoteStepUp1Image.png │ │ ├── periNoteStepUp2Image.png │ │ ├── periNoteStepUp3Image.png │ │ ├── preBookImage.png │ │ ├── preNoteStepUp1Image.png │ │ ├── preNoteStepUp21Image.png │ │ ├── preNoteStepUp22Image.png │ │ ├── preNoteStepUp23Image.png │ │ ├── preNoteStepUp3Image.png │ │ ├── signUpFinishImage.png │ │ ├── signupFirstImage.png │ │ ├── signupSecondImage.png │ │ ├── signupThirdImage.png │ │ └── userImage.png ├── favicon.ico ├── mockServiceWorker.js ├── mypageReadImage.png └── vercel.svg ├── stories ├── Button.stories.tsx ├── Button.tsx ├── Header.stories.tsx ├── Header.tsx ├── Introduction.stories.mdx ├── LandingHeader.stories.tsx ├── LandingHeader.tsx ├── Page.stories.tsx ├── Page.tsx ├── assets │ ├── code-brackets.svg │ ├── colors.svg │ ├── comments.svg │ ├── direction.svg │ ├── flow.svg │ ├── plugin.svg │ ├── repo.svg │ └── stackalt.svg ├── button.css ├── header.css └── page.css ├── styles ├── emotion.d.ts ├── globalStyle.ts └── theme.ts ├── tsconfig.json ├── types ├── bookNote.ts ├── bookcase.ts ├── index.ts ├── landing.ts ├── login.ts ├── myPage.ts └── signup.ts ├── util ├── bookNoteTree.ts ├── check.ts ├── context │ └── BookcaseProvider.tsx ├── escape.ts ├── hooks │ ├── bookNote │ │ ├── usePeriNote.ts │ │ ├── usePreNote.ts │ │ └── useUpdatePeriNote.tsx │ ├── useBookcase.tsx │ ├── useCheckLoginState.tsx │ ├── useDebounce.ts │ ├── useFetchBookNote.tsx │ ├── useMediaQuery.tsx │ ├── useToast.tsx │ ├── useUser.tsx │ └── useUserInfo.tsx ├── imageLoader.ts └── referralLinkList.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release_tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.github/workflows/release_tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/README.md -------------------------------------------------------------------------------- /components/bookNote/BookNoteHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/BookNoteHeader.tsx -------------------------------------------------------------------------------- /components/bookNote/ExampleDrawerBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/ExampleDrawerBtn.tsx -------------------------------------------------------------------------------- /components/bookNote/ExitModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/ExitModal.tsx -------------------------------------------------------------------------------- /components/bookNote/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/Navigation.tsx -------------------------------------------------------------------------------- /components/bookNote/SavePoint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/SavePoint.tsx -------------------------------------------------------------------------------- /components/bookNote/StepUpBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/StepUpBtn.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/DetailArticleWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/DetailArticleWrapper.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/DetailArticleWrapperLabeling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/DetailArticleWrapperLabeling.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/ExamplePeriNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/ExamplePeriNote.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/ExamplePeriQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/ExamplePeriQuestion.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/ExamplePreNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/ExamplePreNote.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/ExamplePreNoteLabeling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/ExamplePreNoteLabeling.tsx -------------------------------------------------------------------------------- /components/bookNote/detail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/detail/index.ts -------------------------------------------------------------------------------- /components/bookNote/drawer/DrawerHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/drawer/DrawerHeader.tsx -------------------------------------------------------------------------------- /components/bookNote/drawer/DrawerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/drawer/DrawerWrapper.tsx -------------------------------------------------------------------------------- /components/bookNote/drawer/PeriNoteExample.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/drawer/PeriNoteExample.tsx -------------------------------------------------------------------------------- /components/bookNote/drawer/PreNoteQa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/drawer/PreNoteQa.tsx -------------------------------------------------------------------------------- /components/bookNote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/index.ts -------------------------------------------------------------------------------- /components/bookNote/periNote/ChildQANode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/ChildQANode.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/Complete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/Complete.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/HeaderLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/HeaderLabel.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/PeriNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/PeriNote.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/PeriNotePostSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/PeriNotePostSection.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/TopAnswerContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/TopAnswerContainer.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/TopQuestionContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/TopQuestionContainer.tsx -------------------------------------------------------------------------------- /components/bookNote/periNote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/periNote/index.ts -------------------------------------------------------------------------------- /components/bookNote/preNote/InputQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/InputQuestion.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/LinkToSignUpSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/LinkToSignUpSection.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/PreNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/PreNote.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/PreNoteFormContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/PreNoteFormContainer.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/PreNotePostSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/PreNotePostSection.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/PreNoteThirdArticle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/PreNoteThirdArticle.tsx -------------------------------------------------------------------------------- /components/bookNote/preNote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/preNote/index.ts -------------------------------------------------------------------------------- /components/bookNote/stepUp/CarouselDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/stepUp/CarouselDots.tsx -------------------------------------------------------------------------------- /components/bookNote/stepUp/StepUpContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/stepUp/StepUpContentWrapper.tsx -------------------------------------------------------------------------------- /components/bookNote/stepUp/StepUpLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/stepUp/StepUpLayout.tsx -------------------------------------------------------------------------------- /components/bookNote/styled/DetailBookNote.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookNote/styled/DetailBookNote.styled.ts -------------------------------------------------------------------------------- /components/bookcase/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/Cards.tsx -------------------------------------------------------------------------------- /components/bookcase/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/Navigation.tsx -------------------------------------------------------------------------------- /components/bookcase/NoCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/NoCards.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/AddBookDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/AddBookDefault.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/AlertToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/AlertToast.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/BookEmpty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/BookEmpty.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/BookInfoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/BookInfoWrapper.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/BookList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/BookList.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/ModalWrapper.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/SearchBar.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/ShowModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/ShowModal.tsx -------------------------------------------------------------------------------- /components/bookcase/addBook/StickyHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/addBook/StickyHeader.tsx -------------------------------------------------------------------------------- /components/bookcase/cardSection/AddBookCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/cardSection/AddBookCard.tsx -------------------------------------------------------------------------------- /components/bookcase/cardSection/BookCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/cardSection/BookCard.tsx -------------------------------------------------------------------------------- /components/bookcase/cardSection/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/cardSection/Empty.tsx -------------------------------------------------------------------------------- /components/bookcase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/bookcase/index.ts -------------------------------------------------------------------------------- /components/common/AlertLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/AlertLabel.tsx -------------------------------------------------------------------------------- /components/common/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/Empty.tsx -------------------------------------------------------------------------------- /components/common/Error404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/Error404.tsx -------------------------------------------------------------------------------- /components/common/InputEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/InputEmail.tsx -------------------------------------------------------------------------------- /components/common/InputPwd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/InputPwd.tsx -------------------------------------------------------------------------------- /components/common/LabelQuestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/LabelQuestion.tsx -------------------------------------------------------------------------------- /components/common/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/Loading.tsx -------------------------------------------------------------------------------- /components/common/NavHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/NavHeader.tsx -------------------------------------------------------------------------------- /components/common/NavWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/NavWrapper.tsx -------------------------------------------------------------------------------- /components/common/PopUpDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/PopUpDelete.tsx -------------------------------------------------------------------------------- /components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/index.ts -------------------------------------------------------------------------------- /components/common/styled/BookModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/BookModalWrapper.tsx -------------------------------------------------------------------------------- /components/common/styled/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Button.tsx -------------------------------------------------------------------------------- /components/common/styled/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Icon.tsx -------------------------------------------------------------------------------- /components/common/styled/Img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Img.tsx -------------------------------------------------------------------------------- /components/common/styled/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Input.tsx -------------------------------------------------------------------------------- /components/common/styled/LabelHidden.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/LabelHidden.tsx -------------------------------------------------------------------------------- /components/common/styled/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Landing.tsx -------------------------------------------------------------------------------- /components/common/styled/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Link.tsx -------------------------------------------------------------------------------- /components/common/styled/MenuWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/MenuWrapper.tsx -------------------------------------------------------------------------------- /components/common/styled/MobileLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/MobileLanding.tsx -------------------------------------------------------------------------------- /components/common/styled/NoteModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/NoteModalWrapper.tsx -------------------------------------------------------------------------------- /components/common/styled/PopUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/PopUp.tsx -------------------------------------------------------------------------------- /components/common/styled/Question.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Question.tsx -------------------------------------------------------------------------------- /components/common/styled/Signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Signup.tsx -------------------------------------------------------------------------------- /components/common/styled/StepModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/StepModalWrapper.tsx -------------------------------------------------------------------------------- /components/common/styled/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/common/styled/Toggle.tsx -------------------------------------------------------------------------------- /components/icons/NavHeaderIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/icons/NavHeaderIcons.tsx -------------------------------------------------------------------------------- /components/icons/NavWrapperIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/icons/NavWrapperIcons.tsx -------------------------------------------------------------------------------- /components/landing/LandingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingCard.tsx -------------------------------------------------------------------------------- /components/landing/LandingExperiment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingExperiment.tsx -------------------------------------------------------------------------------- /components/landing/LandingFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingFooter.tsx -------------------------------------------------------------------------------- /components/landing/LandingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingHeader.tsx -------------------------------------------------------------------------------- /components/landing/LandingInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingInfo.tsx -------------------------------------------------------------------------------- /components/landing/LandingMotivation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingMotivation.tsx -------------------------------------------------------------------------------- /components/landing/LandingSuggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingSuggestion.tsx -------------------------------------------------------------------------------- /components/landing/LandingValidation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/LandingValidation.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingCard.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingExperiment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingExperiment.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingFooter.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingHeader.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingInfo.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingMotivation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingMotivation.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingSuggestion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingSuggestion.tsx -------------------------------------------------------------------------------- /components/landing/MobileLandingValidation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/MobileLandingValidation.tsx -------------------------------------------------------------------------------- /components/landing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/landing/index.ts -------------------------------------------------------------------------------- /components/layout/CommonLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/layout/CommonLayout.tsx -------------------------------------------------------------------------------- /components/layout/MainLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/layout/MainLayout.tsx -------------------------------------------------------------------------------- /components/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/layout/index.ts -------------------------------------------------------------------------------- /components/login/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/login/LoginForm.tsx -------------------------------------------------------------------------------- /components/login/LoginNavSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/login/LoginNavSection.tsx -------------------------------------------------------------------------------- /components/login/PwdSightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/login/PwdSightIcon.tsx -------------------------------------------------------------------------------- /components/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/login/index.ts -------------------------------------------------------------------------------- /components/main/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/main/Banner.tsx -------------------------------------------------------------------------------- /components/main/MainHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/main/MainHeader.tsx -------------------------------------------------------------------------------- /components/main/RecentBooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/main/RecentBooks.tsx -------------------------------------------------------------------------------- /components/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/main/index.ts -------------------------------------------------------------------------------- /components/myPage/BookComment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/BookComment.tsx -------------------------------------------------------------------------------- /components/myPage/ServiceContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/ServiceContent.tsx -------------------------------------------------------------------------------- /components/myPage/TopBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/TopBanner.tsx -------------------------------------------------------------------------------- /components/myPage/UserContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/UserContent.tsx -------------------------------------------------------------------------------- /components/myPage/WithdrawContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/WithdrawContent.tsx -------------------------------------------------------------------------------- /components/myPage/WithdrawContentComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/WithdrawContentComplete.tsx -------------------------------------------------------------------------------- /components/myPage/WithdrawContentConfirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/WithdrawContentConfirm.tsx -------------------------------------------------------------------------------- /components/myPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/myPage/index.ts -------------------------------------------------------------------------------- /components/signup/LastStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/signup/LastStep.tsx -------------------------------------------------------------------------------- /components/signup/PasswordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/signup/PasswordInput.tsx -------------------------------------------------------------------------------- /components/signup/SignupForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/signup/SignupForm.tsx -------------------------------------------------------------------------------- /components/signup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/components/signup/index.ts -------------------------------------------------------------------------------- /core/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/api/api.ts -------------------------------------------------------------------------------- /core/api/auth/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/api/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/api/axios.ts -------------------------------------------------------------------------------- /core/api/book/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/api/review/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/api/review/index.ts -------------------------------------------------------------------------------- /core/api/user/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/atom/bookNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/atom/bookNote.ts -------------------------------------------------------------------------------- /core/atom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/atom/index.ts -------------------------------------------------------------------------------- /core/constant/bookNote/childNodeLabelColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/constant/bookNote/childNodeLabelColor.ts -------------------------------------------------------------------------------- /core/constant/bookNote/exampleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/constant/bookNote/exampleData.ts -------------------------------------------------------------------------------- /core/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/core/localStorage.ts -------------------------------------------------------------------------------- /mocks/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/mocks/browser.ts -------------------------------------------------------------------------------- /mocks/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/mocks/handlers/index.ts -------------------------------------------------------------------------------- /mocks/handlers/review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/mocks/handlers/review.ts -------------------------------------------------------------------------------- /mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/mocks/index.ts -------------------------------------------------------------------------------- /mocks/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/mocks/server.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/book-note/[reviewId]/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/book-note/[reviewId]/detail.tsx -------------------------------------------------------------------------------- /pages/book-note/[reviewId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/book-note/[reviewId]/index.tsx -------------------------------------------------------------------------------- /pages/book-note/example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/book-note/example.tsx -------------------------------------------------------------------------------- /pages/bookcase/add-book.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/bookcase/add-book.tsx -------------------------------------------------------------------------------- /pages/bookcase/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/bookcase/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/login.tsx -------------------------------------------------------------------------------- /pages/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/main.tsx -------------------------------------------------------------------------------- /pages/my-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/my-page.tsx -------------------------------------------------------------------------------- /pages/secret-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/secret-test.tsx -------------------------------------------------------------------------------- /pages/signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/signup/index.tsx -------------------------------------------------------------------------------- /pages/signup/welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/signup/welcome.tsx -------------------------------------------------------------------------------- /pages/to-be.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/pages/to-be.tsx -------------------------------------------------------------------------------- /public/assets/asset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/asset.d.ts -------------------------------------------------------------------------------- /public/assets/icons/404Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/404Icon.svg -------------------------------------------------------------------------------- /public/assets/icons/alertIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/alertIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/binIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/binIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/bookcaseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/bookcaseIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/cancelIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/cancelIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/cancelIconBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/cancelIconBlack.svg -------------------------------------------------------------------------------- /public/assets/icons/cancelIconWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/cancelIconWhite.svg -------------------------------------------------------------------------------- /public/assets/icons/checkIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/checkIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/checkSaveIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/checkSaveIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/deleteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/deleteIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/deleteNoteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/deleteNoteIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/detailIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/detailIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/editProfileIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/editProfileIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/guideIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/guideIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/homeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/homeIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/index.ts -------------------------------------------------------------------------------- /public/assets/icons/landingFooterIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingFooterIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/landingIcon01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingIcon01.svg -------------------------------------------------------------------------------- /public/assets/icons/landingIcon02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingIcon02.svg -------------------------------------------------------------------------------- /public/assets/icons/landingIcon03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingIcon03.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileFour01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileFour01.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileFour02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileFour02.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileHeader.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileIcon01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileIcon01.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileIcon02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileIcon02.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileIcon03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileIcon03.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileMark.svg -------------------------------------------------------------------------------- /public/assets/icons/landingMobileThree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/landingMobileThree.svg -------------------------------------------------------------------------------- /public/assets/icons/leftArrowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/leftArrowIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/logoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/logoIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/mainLogoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/mainLogoIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/modifyNoteIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/modifyNoteIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/moreIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/moreIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/myPageIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/myPageIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/noSightIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/noSightIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/periAnswerIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/periAnswerIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/periQuestionIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/periQuestionIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/rightArrowIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/rightArrowIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/saveIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/saveIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/searchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/searchIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/sightIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/sightIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/signupCheckingIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/signupCheckingIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/titleLogoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/titleLogoIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/toBeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/toBeIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/toastAlertIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/toastAlertIcon.svg -------------------------------------------------------------------------------- /public/assets/icons/toggleIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/icons/toggleIcon.svg -------------------------------------------------------------------------------- /public/assets/images/addBookSearchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/addBookSearchImage.png -------------------------------------------------------------------------------- /public/assets/images/addBooksImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/addBooksImage.png -------------------------------------------------------------------------------- /public/assets/images/deleteImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/deleteImage.png -------------------------------------------------------------------------------- /public/assets/images/deviceImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/deviceImage.png -------------------------------------------------------------------------------- /public/assets/images/drawerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/drawerImage.png -------------------------------------------------------------------------------- /public/assets/images/drawerImageSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/drawerImageSmall.png -------------------------------------------------------------------------------- /public/assets/images/emptyBookImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/emptyBookImage.png -------------------------------------------------------------------------------- /public/assets/images/exitImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/exitImage.png -------------------------------------------------------------------------------- /public/assets/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/index.ts -------------------------------------------------------------------------------- /public/assets/images/landingBookNoteImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingBookNoteImage.png -------------------------------------------------------------------------------- /public/assets/images/landingBookcaseImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingBookcaseImage.png -------------------------------------------------------------------------------- /public/assets/images/landingImage01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingImage01.png -------------------------------------------------------------------------------- /public/assets/images/landingImage02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingImage02.png -------------------------------------------------------------------------------- /public/assets/images/landingMobileBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingMobileBanner.png -------------------------------------------------------------------------------- /public/assets/images/landingTabletBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/landingTabletBanner.png -------------------------------------------------------------------------------- /public/assets/images/loadingGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/loadingGif.gif -------------------------------------------------------------------------------- /public/assets/images/loginImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/loginImage.png -------------------------------------------------------------------------------- /public/assets/images/mainBannerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/mainBannerImage.png -------------------------------------------------------------------------------- /public/assets/images/mypageBannerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/mypageBannerImage.png -------------------------------------------------------------------------------- /public/assets/images/mypageReadImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/mypageReadImage.png -------------------------------------------------------------------------------- /public/assets/images/periNoteStepUp1Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/periNoteStepUp1Image.png -------------------------------------------------------------------------------- /public/assets/images/periNoteStepUp2Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/periNoteStepUp2Image.png -------------------------------------------------------------------------------- /public/assets/images/periNoteStepUp3Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/periNoteStepUp3Image.png -------------------------------------------------------------------------------- /public/assets/images/preBookImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preBookImage.png -------------------------------------------------------------------------------- /public/assets/images/preNoteStepUp1Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preNoteStepUp1Image.png -------------------------------------------------------------------------------- /public/assets/images/preNoteStepUp21Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preNoteStepUp21Image.png -------------------------------------------------------------------------------- /public/assets/images/preNoteStepUp22Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preNoteStepUp22Image.png -------------------------------------------------------------------------------- /public/assets/images/preNoteStepUp23Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preNoteStepUp23Image.png -------------------------------------------------------------------------------- /public/assets/images/preNoteStepUp3Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/preNoteStepUp3Image.png -------------------------------------------------------------------------------- /public/assets/images/signUpFinishImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/signUpFinishImage.png -------------------------------------------------------------------------------- /public/assets/images/signupFirstImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/signupFirstImage.png -------------------------------------------------------------------------------- /public/assets/images/signupSecondImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/signupSecondImage.png -------------------------------------------------------------------------------- /public/assets/images/signupThirdImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/signupThirdImage.png -------------------------------------------------------------------------------- /public/assets/images/userImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/assets/images/userImage.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/mypageReadImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/mypageReadImage.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Button.stories.tsx -------------------------------------------------------------------------------- /stories/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Button.tsx -------------------------------------------------------------------------------- /stories/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Header.stories.tsx -------------------------------------------------------------------------------- /stories/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Header.tsx -------------------------------------------------------------------------------- /stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /stories/LandingHeader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/LandingHeader.stories.tsx -------------------------------------------------------------------------------- /stories/LandingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/LandingHeader.tsx -------------------------------------------------------------------------------- /stories/Page.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Page.stories.tsx -------------------------------------------------------------------------------- /stories/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/Page.tsx -------------------------------------------------------------------------------- /stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/colors.svg -------------------------------------------------------------------------------- /stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/comments.svg -------------------------------------------------------------------------------- /stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/direction.svg -------------------------------------------------------------------------------- /stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/flow.svg -------------------------------------------------------------------------------- /stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/plugin.svg -------------------------------------------------------------------------------- /stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/repo.svg -------------------------------------------------------------------------------- /stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /stories/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/button.css -------------------------------------------------------------------------------- /stories/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/header.css -------------------------------------------------------------------------------- /stories/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/stories/page.css -------------------------------------------------------------------------------- /styles/emotion.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/styles/emotion.d.ts -------------------------------------------------------------------------------- /styles/globalStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/styles/globalStyle.ts -------------------------------------------------------------------------------- /styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/styles/theme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/bookNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/bookNote.ts -------------------------------------------------------------------------------- /types/bookcase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/bookcase.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/index.ts -------------------------------------------------------------------------------- /types/landing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/landing.ts -------------------------------------------------------------------------------- /types/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/login.ts -------------------------------------------------------------------------------- /types/myPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/myPage.ts -------------------------------------------------------------------------------- /types/signup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/types/signup.ts -------------------------------------------------------------------------------- /util/bookNoteTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/bookNoteTree.ts -------------------------------------------------------------------------------- /util/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/check.ts -------------------------------------------------------------------------------- /util/context/BookcaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/context/BookcaseProvider.tsx -------------------------------------------------------------------------------- /util/escape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/escape.ts -------------------------------------------------------------------------------- /util/hooks/bookNote/usePeriNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/bookNote/usePeriNote.ts -------------------------------------------------------------------------------- /util/hooks/bookNote/usePreNote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/bookNote/usePreNote.ts -------------------------------------------------------------------------------- /util/hooks/bookNote/useUpdatePeriNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/bookNote/useUpdatePeriNote.tsx -------------------------------------------------------------------------------- /util/hooks/useBookcase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useBookcase.tsx -------------------------------------------------------------------------------- /util/hooks/useCheckLoginState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useCheckLoginState.tsx -------------------------------------------------------------------------------- /util/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useDebounce.ts -------------------------------------------------------------------------------- /util/hooks/useFetchBookNote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useFetchBookNote.tsx -------------------------------------------------------------------------------- /util/hooks/useMediaQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useMediaQuery.tsx -------------------------------------------------------------------------------- /util/hooks/useToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useToast.tsx -------------------------------------------------------------------------------- /util/hooks/useUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useUser.tsx -------------------------------------------------------------------------------- /util/hooks/useUserInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/hooks/useUserInfo.tsx -------------------------------------------------------------------------------- /util/imageLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/imageLoader.ts -------------------------------------------------------------------------------- /util/referralLinkList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/util/referralLinkList.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamBookTez/nextjs-book-stairs/HEAD/yarn.lock --------------------------------------------------------------------------------