├── .env ├── .eslintrc.json ├── .example.env ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── CONTRBUTING.md ├── README.md ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── assets │ └── dashboard │ │ ├── favorite.svg │ │ ├── marketplace.svg │ │ ├── store.svg │ │ └── swap.svg ├── icon.tsx ├── images │ └── patternbg.png ├── logo.ico ├── logo.png ├── logo.svg ├── next.svg └── vercel.svg ├── src ├── HOC │ ├── withAuth.tsx │ └── withQuery.tsx ├── app │ ├── auth │ │ ├── otp │ │ │ └── page.tsx │ │ ├── password │ │ │ ├── forgotten-password │ │ │ │ └── page.tsx │ │ │ └── reset-password │ │ │ │ └── page.tsx │ │ ├── signin │ │ │ └── page.tsx │ │ └── signup │ │ │ └── page.tsx │ ├── context │ │ └── uploadImageContext.tsx │ ├── dashboard │ │ ├── [slug] │ │ │ └── page.tsx │ │ ├── book_club │ │ │ └── page.tsx │ │ ├── community │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── create │ │ │ └── swap │ │ │ │ └── page.tsx │ │ ├── discover │ │ │ └── page.tsx │ │ ├── favorites │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── marketplace │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── profile │ │ │ └── [slug] │ │ │ │ └── page.tsx │ │ ├── reading_list │ │ │ └── page.tsx │ │ ├── review │ │ │ └── [book] │ │ │ │ └── page.tsx │ │ ├── settings │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── profile │ │ │ │ └── page.tsx │ │ ├── stores │ │ │ └── page.tsx │ │ └── swap │ │ │ ├── page.tsx │ │ │ └── requests │ │ │ └── page.tsx │ ├── home │ │ ├── features.tsx │ │ ├── groups.tsx │ │ ├── index.tsx │ │ ├── info.tsx │ │ ├── joinCommunity.tsx │ │ ├── stats.tsx │ │ └── svgs │ │ │ └── featuredSvg.tsx │ ├── layout.tsx │ ├── loading.tsx │ ├── messages │ │ ├── layout.tsx │ │ └── page.tsx │ ├── opengraph-image.png │ └── page.tsx ├── components │ ├── atom │ │ ├── button │ │ │ └── buttons.tsx │ │ ├── comming_soon.tsx │ │ ├── errors │ │ │ ├── errorLoading.tsx │ │ │ └── noDataFound.tsx │ │ ├── form │ │ │ ├── inputArea.tsx │ │ │ └── selectField.tsx │ │ ├── home │ │ │ ├── footer.tsx │ │ │ └── header.tsx │ │ ├── icons │ │ │ ├── actionIcons.tsx │ │ │ ├── heroSvgs.tsx │ │ │ └── logo.tsx │ │ ├── image_upload.tsx │ │ ├── loading_data.tsx │ │ └── store │ │ │ ├── emptyStore.tsx │ │ │ └── noSwapItem.tsx │ ├── mobile │ │ └── mobileDashboardHeader.tsx │ ├── molecules │ │ ├── account_type.tsx │ │ ├── bookDefailtholder.tsx │ │ ├── chat │ │ │ ├── UserChatTop.tsx │ │ │ └── userChatContainer.tsx │ │ └── dashboard │ │ │ ├── community │ │ │ ├── post_blocks.tsx │ │ │ └── user_profile_container.tsx │ │ │ ├── dashboard │ │ │ └── dashbord │ │ │ │ ├── dashboardAdsHero.tsx │ │ │ │ ├── dashboardFlexBox.tsx │ │ │ │ ├── review │ │ │ │ ├── booksRecommendations.tsx │ │ │ │ ├── commentBox.tsx │ │ │ │ └── reviewPanel.tsx │ │ │ │ └── settings │ │ │ │ └── index.tsx │ │ │ ├── discover_content_box.tsx │ │ │ ├── marketplace │ │ │ └── swapBox.tsx │ │ │ └── requestBox.tsx │ ├── pages │ │ └── dashbord │ │ │ ├── community.tsx │ │ │ ├── dashbordHome.tsx │ │ │ └── marketplace │ │ │ └── swap.tsx │ ├── preloader │ │ └── Preloader.tsx │ ├── skeletons │ │ └── dashboard │ │ │ └── peer_showcasebox_skeleton.tsx │ └── templates │ │ ├── dashboard │ │ ├── marketplace │ │ │ └── preview_marketplacedata.tsx │ │ └── view_wap_request.tsx │ │ └── home │ │ ├── hero.tsx │ │ └── waitlistForm.tsx ├── constants │ ├── constants.ts │ ├── endpoints.ts │ └── index.ts ├── hooks │ ├── upload.tsx │ └── useSearch.tsx ├── interface │ └── index.ts ├── layouts │ ├── auth │ │ ├── authLayout.tsx │ │ └── authVerificationLayout.tsx │ ├── container │ │ └── containerLayout.tsx │ ├── dashboard │ │ ├── bookPartLayout.tsx │ │ ├── dashboardHeader.tsx │ │ └── dashboardSidebar.tsx │ └── popups │ │ ├── appDrawerLayout.tsx │ │ └── modalLayout.tsx ├── pages │ └── _document.js ├── provider │ ├── chakraProvider.tsx │ └── tanstackProvider.tsx ├── redux │ ├── rootReducer.ts │ ├── slice │ │ ├── auth.ts │ │ ├── location.ts │ │ └── users.slice.ts │ └── store.ts ├── styles │ ├── base │ │ ├── _config.scss │ │ └── _variables.scss │ └── main.scss ├── theme │ ├── buttonConfig.ts │ ├── componentConfig.ts │ ├── theme.ts │ └── themeConfig.ts ├── utils │ ├── axios.ts │ ├── calculateLocation.ts │ ├── convertToIcon.ts │ ├── copyToClipboard.ts │ ├── data │ │ └── dashboardSideData.tsx │ ├── navigations │ │ └── nagiation.tsx │ └── request.ts └── validations │ ├── auth │ ├── signinValidationSchema.ts │ └── signupValidationSchema.ts │ ├── community │ └── index.ts │ ├── marketplace │ └── index.ts │ └── profile │ └── settings.ts ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_DEFAULT_URL = https://usebookhive.up.railway.app/api -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.example.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_DEFAULT_URL = https://usebookhive.up.railway.app/api -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "figma.autocompleteProperties": true 3 | } 4 | -------------------------------------------------------------------------------- /CONTRBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/CONTRBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/README.md -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/assets/dashboard/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/assets/dashboard/favorite.svg -------------------------------------------------------------------------------- /public/assets/dashboard/marketplace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/assets/dashboard/marketplace.svg -------------------------------------------------------------------------------- /public/assets/dashboard/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/assets/dashboard/store.svg -------------------------------------------------------------------------------- /public/assets/dashboard/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/assets/dashboard/swap.svg -------------------------------------------------------------------------------- /public/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/icon.tsx -------------------------------------------------------------------------------- /public/images/patternbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/images/patternbg.png -------------------------------------------------------------------------------- /public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/logo.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/HOC/withAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/HOC/withAuth.tsx -------------------------------------------------------------------------------- /src/HOC/withQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/HOC/withQuery.tsx -------------------------------------------------------------------------------- /src/app/auth/otp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/auth/otp/page.tsx -------------------------------------------------------------------------------- /src/app/auth/password/forgotten-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/auth/password/forgotten-password/page.tsx -------------------------------------------------------------------------------- /src/app/auth/password/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/auth/password/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /src/app/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/auth/signup/page.tsx -------------------------------------------------------------------------------- /src/app/context/uploadImageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/context/uploadImageContext.tsx -------------------------------------------------------------------------------- /src/app/dashboard/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/book_club/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/book_club/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/community/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/community/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/community/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/create/swap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/create/swap/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/discover/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/discover/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/favorites/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/favorites/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/marketplace/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/marketplace/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/marketplace/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/marketplace/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/profile/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/profile/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/reading_list/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/reading_list/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/review/[book]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/review/[book]/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/settings/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/settings/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/settings/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/settings/profile/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/stores/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/stores/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/swap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/swap/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/swap/requests/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/dashboard/swap/requests/page.tsx -------------------------------------------------------------------------------- /src/app/home/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/features.tsx -------------------------------------------------------------------------------- /src/app/home/groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/groups.tsx -------------------------------------------------------------------------------- /src/app/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/index.tsx -------------------------------------------------------------------------------- /src/app/home/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/info.tsx -------------------------------------------------------------------------------- /src/app/home/joinCommunity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/joinCommunity.tsx -------------------------------------------------------------------------------- /src/app/home/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/stats.tsx -------------------------------------------------------------------------------- /src/app/home/svgs/featuredSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/home/svgs/featuredSvg.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/messages/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/messages/layout.tsx -------------------------------------------------------------------------------- /src/app/messages/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/messages/page.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/atom/button/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/button/buttons.tsx -------------------------------------------------------------------------------- /src/components/atom/comming_soon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/comming_soon.tsx -------------------------------------------------------------------------------- /src/components/atom/errors/errorLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/errors/errorLoading.tsx -------------------------------------------------------------------------------- /src/components/atom/errors/noDataFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/errors/noDataFound.tsx -------------------------------------------------------------------------------- /src/components/atom/form/inputArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/form/inputArea.tsx -------------------------------------------------------------------------------- /src/components/atom/form/selectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/form/selectField.tsx -------------------------------------------------------------------------------- /src/components/atom/home/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/home/footer.tsx -------------------------------------------------------------------------------- /src/components/atom/home/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/home/header.tsx -------------------------------------------------------------------------------- /src/components/atom/icons/actionIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/icons/actionIcons.tsx -------------------------------------------------------------------------------- /src/components/atom/icons/heroSvgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/icons/heroSvgs.tsx -------------------------------------------------------------------------------- /src/components/atom/icons/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/icons/logo.tsx -------------------------------------------------------------------------------- /src/components/atom/image_upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/image_upload.tsx -------------------------------------------------------------------------------- /src/components/atom/loading_data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/loading_data.tsx -------------------------------------------------------------------------------- /src/components/atom/store/emptyStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/store/emptyStore.tsx -------------------------------------------------------------------------------- /src/components/atom/store/noSwapItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/atom/store/noSwapItem.tsx -------------------------------------------------------------------------------- /src/components/mobile/mobileDashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/mobile/mobileDashboardHeader.tsx -------------------------------------------------------------------------------- /src/components/molecules/account_type.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/account_type.tsx -------------------------------------------------------------------------------- /src/components/molecules/bookDefailtholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/bookDefailtholder.tsx -------------------------------------------------------------------------------- /src/components/molecules/chat/UserChatTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/chat/UserChatTop.tsx -------------------------------------------------------------------------------- /src/components/molecules/chat/userChatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/chat/userChatContainer.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/community/post_blocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/community/post_blocks.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/community/user_profile_container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/community/user_profile_container.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/dashboardAdsHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/dashboardAdsHero.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/dashboardFlexBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/dashboardFlexBox.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/review/booksRecommendations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/review/booksRecommendations.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/review/commentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/review/commentBox.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/review/reviewPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/review/reviewPanel.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/dashboard/dashbord/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/dashboard/dashbord/settings/index.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/discover_content_box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/discover_content_box.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/marketplace/swapBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/marketplace/swapBox.tsx -------------------------------------------------------------------------------- /src/components/molecules/dashboard/requestBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/molecules/dashboard/requestBox.tsx -------------------------------------------------------------------------------- /src/components/pages/dashbord/community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/pages/dashbord/community.tsx -------------------------------------------------------------------------------- /src/components/pages/dashbord/dashbordHome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/pages/dashbord/dashbordHome.tsx -------------------------------------------------------------------------------- /src/components/pages/dashbord/marketplace/swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/pages/dashbord/marketplace/swap.tsx -------------------------------------------------------------------------------- /src/components/preloader/Preloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/preloader/Preloader.tsx -------------------------------------------------------------------------------- /src/components/skeletons/dashboard/peer_showcasebox_skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/skeletons/dashboard/peer_showcasebox_skeleton.tsx -------------------------------------------------------------------------------- /src/components/templates/dashboard/marketplace/preview_marketplacedata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/templates/dashboard/marketplace/preview_marketplacedata.tsx -------------------------------------------------------------------------------- /src/components/templates/dashboard/view_wap_request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/templates/dashboard/view_wap_request.tsx -------------------------------------------------------------------------------- /src/components/templates/home/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/templates/home/hero.tsx -------------------------------------------------------------------------------- /src/components/templates/home/waitlistForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/components/templates/home/waitlistForm.tsx -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/constants/constants.ts -------------------------------------------------------------------------------- /src/constants/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/constants/endpoints.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/hooks/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/hooks/upload.tsx -------------------------------------------------------------------------------- /src/hooks/useSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/hooks/useSearch.tsx -------------------------------------------------------------------------------- /src/interface/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/layouts/auth/authLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/auth/authLayout.tsx -------------------------------------------------------------------------------- /src/layouts/auth/authVerificationLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/auth/authVerificationLayout.tsx -------------------------------------------------------------------------------- /src/layouts/container/containerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/container/containerLayout.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/bookPartLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/dashboard/bookPartLayout.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/dashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/dashboard/dashboardHeader.tsx -------------------------------------------------------------------------------- /src/layouts/dashboard/dashboardSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/dashboard/dashboardSidebar.tsx -------------------------------------------------------------------------------- /src/layouts/popups/appDrawerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/popups/appDrawerLayout.tsx -------------------------------------------------------------------------------- /src/layouts/popups/modalLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/layouts/popups/modalLayout.tsx -------------------------------------------------------------------------------- /src/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/pages/_document.js -------------------------------------------------------------------------------- /src/provider/chakraProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/provider/chakraProvider.tsx -------------------------------------------------------------------------------- /src/provider/tanstackProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/provider/tanstackProvider.tsx -------------------------------------------------------------------------------- /src/redux/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/redux/rootReducer.ts -------------------------------------------------------------------------------- /src/redux/slice/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/redux/slice/auth.ts -------------------------------------------------------------------------------- /src/redux/slice/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/redux/slice/location.ts -------------------------------------------------------------------------------- /src/redux/slice/users.slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/redux/slice/users.slice.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/styles/base/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/styles/base/_config.scss -------------------------------------------------------------------------------- /src/styles/base/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/theme/buttonConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/theme/buttonConfig.ts -------------------------------------------------------------------------------- /src/theme/componentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/theme/componentConfig.ts -------------------------------------------------------------------------------- /src/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/theme/theme.ts -------------------------------------------------------------------------------- /src/theme/themeConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/theme/themeConfig.ts -------------------------------------------------------------------------------- /src/utils/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/axios.ts -------------------------------------------------------------------------------- /src/utils/calculateLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/calculateLocation.ts -------------------------------------------------------------------------------- /src/utils/convertToIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/convertToIcon.ts -------------------------------------------------------------------------------- /src/utils/copyToClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/copyToClipboard.ts -------------------------------------------------------------------------------- /src/utils/data/dashboardSideData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/data/dashboardSideData.tsx -------------------------------------------------------------------------------- /src/utils/navigations/nagiation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/navigations/nagiation.tsx -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/validations/auth/signinValidationSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/validations/auth/signinValidationSchema.ts -------------------------------------------------------------------------------- /src/validations/auth/signupValidationSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/validations/auth/signupValidationSchema.ts -------------------------------------------------------------------------------- /src/validations/community/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/validations/community/index.ts -------------------------------------------------------------------------------- /src/validations/marketplace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/validations/marketplace/index.ts -------------------------------------------------------------------------------- /src/validations/profile/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/src/validations/profile/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bookhive-Club/Bookhive-Client/HEAD/yarn.lock --------------------------------------------------------------------------------