├── .babelrc ├── .dockerignore ├── .env.sample ├── .gitignore ├── .vscode └── sftp.json ├── @types ├── global.d.ts ├── less.d.ts ├── node.d.ts ├── redux.d.ts ├── videojs.d.ts └── window.d.ts ├── README.md ├── env.example ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 403.tsx ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── _error.tsx ├── about-us │ ├── index.less │ └── index.tsx ├── account │ ├── performer │ │ ├── account-settings │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── earning │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── galleries │ │ │ ├── add.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── update.tsx │ │ ├── geo-block │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── orders │ │ │ ├── detail.tsx │ │ │ └── index.tsx │ │ ├── payout-requests │ │ │ ├── create.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── update.tsx │ │ ├── photos │ │ │ ├── add.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── update.tsx │ │ ├── products │ │ │ ├── add.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── update.tsx │ │ ├── profile │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── schedules │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── videos │ │ │ ├── add.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── update.tsx │ └── user │ │ ├── account-settings │ │ ├── index.less │ │ └── index.tsx │ │ ├── favorites │ │ ├── index.less │ │ └── index.tsx │ │ ├── funds-tokens │ │ ├── index.less │ │ └── index.tsx │ │ ├── orders │ │ ├── detail.tsx │ │ └── index.tsx │ │ ├── payment-token-history │ │ ├── index.less │ │ └── index.tsx │ │ ├── purchased-gallery │ │ ├── index.less │ │ └── index.tsx │ │ ├── purchased-product │ │ ├── index.less │ │ └── index.tsx │ │ ├── purchased-video │ │ ├── index.less │ │ └── index.tsx │ │ ├── refund-request │ │ ├── index.tsx │ │ └── request.tsx │ │ └── transaction-history │ │ ├── index.less │ │ └── index.tsx ├── auth │ ├── forgot-password │ │ └── index.tsx │ ├── index.less │ ├── login │ │ ├── performer.tsx │ │ └── user.tsx │ ├── register │ │ ├── model.tsx │ │ └── user.tsx │ └── resend-verification-email │ │ └── index.tsx ├── contact-us │ ├── index.less │ └── index.tsx ├── faq │ ├── Faqs.js │ └── index.tsx ├── galleries │ └── index.tsx ├── how-it-works │ ├── index.less │ └── index.tsx ├── index.tsx ├── live │ ├── groupchat.tsx │ ├── index.less │ ├── index.tsx │ ├── privatechat.tsx │ └── webrtc │ │ ├── groupchat.tsx │ │ └── privatechat.tsx ├── livecam │ └── index.tsx ├── mental-health-conditions │ ├── index.less │ └── index.tsx ├── messages │ └── index.tsx ├── our-therapists │ ├── index.less │ └── index.tsx ├── page │ └── index.tsx ├── photos │ ├── index.less │ └── index.tsx ├── privacy-policy │ ├── index.less │ └── index.tsx ├── products │ └── index.tsx ├── stream │ ├── groupchat.tsx │ ├── index.less │ ├── index.tsx │ ├── privatechat.tsx │ └── webrtc │ │ ├── groupchat.tsx │ │ └── privatechat.tsx ├── studio │ ├── account-settings.tsx │ ├── commissions │ │ ├── index.less │ │ └── index.tsx │ ├── earning │ │ ├── index.less │ │ └── index.tsx │ ├── index.tsx │ ├── login.tsx │ ├── models │ │ ├── add.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ └── stats.tsx │ ├── payout-requests │ │ ├── create.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ ├── performer-requests.tsx │ │ └── update.tsx │ └── register.tsx ├── tag │ ├── index.less │ └── index.tsx ├── terms-conditions │ ├── index.less │ └── index.tsx ├── type-of-therapy │ ├── index.less │ └── index.tsx ├── videos │ ├── detail.tsx │ ├── index.less │ └── index.tsx └── work-with-us │ ├── index.less │ └── index.tsx ├── public ├── 1.png ├── background-login.jpg ├── background-responsive.svg ├── banner-bottom.png ├── crown - Copy.png ├── css │ ├── antd.min.css │ └── dark-theme.js ├── default-user-icon.png ├── emotion-ico.png ├── favicon.ico ├── feature-1.png ├── feature-2.png ├── feature-4.png ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.svg │ ├── Flaticon.ttf │ ├── Flaticon.woff │ ├── Flaticon.woff2 │ ├── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf │ ├── boxicons.eot │ ├── boxicons.svg │ ├── boxicons.ttf │ ├── boxicons.woff │ └── boxicons.woff2 ├── gallery.png ├── group.png ├── icons │ ├── Group 532.svg │ ├── Payment Tokens history.svg │ ├── Performer payout.svg │ ├── Transaction history.svg │ ├── add-circle.svg │ ├── chat-settings.svg │ ├── checkbox.svg │ ├── coinbase-logo.svg │ ├── commission.svg │ ├── delete.svg │ ├── down filled.svg │ ├── earnings.svg │ ├── expand-outlined.svg │ ├── eye.svg │ ├── facebook.svg │ ├── favourite.svg │ ├── female-sign.svg │ ├── filter.svg │ ├── geo-blocking.svg │ ├── gift.svg │ ├── group.svg │ ├── images.svg │ ├── instagram.svg │ ├── jam_transgender.svg │ ├── left-directional.svg │ ├── male-sign.svg │ ├── message.svg │ ├── models.svg │ ├── mute.svg │ ├── my-products.svg │ ├── payout request.svg │ ├── payout requests.svg │ ├── performer sats.svg │ ├── product.svg │ ├── profile.svg │ ├── purchased-image.svg │ ├── purchased-items.svg │ ├── purchased-videos.svg │ ├── right-directional.svg │ ├── schedules.svg │ ├── search.svg │ ├── send.svg │ ├── settings.svg │ ├── smily.svg │ ├── star-outlined.svg │ ├── stop broadcasrting.svg │ ├── tokens.svg │ ├── twitter.svg │ ├── upload file.svg │ ├── video.svg │ ├── video1.svg │ └── volume-full.svg ├── img │ ├── 123.mp4 │ ├── about │ │ ├── about-shape-1.png │ │ ├── about-shape-2.png │ │ ├── about-shape-3.png │ │ └── about1.jpg │ ├── appointment-bg-2.png │ ├── appointment-bg.jpg │ ├── appointment-bg3.jpg │ ├── client │ │ ├── client-bg.jpg │ │ ├── client1.jpg │ │ ├── client2.jpg │ │ ├── client3.jpg │ │ ├── client4.jpg │ │ ├── client5.jpg │ │ └── client6.jpg │ ├── doctors │ │ ├── doctor1.png │ │ ├── doctor10.png │ │ ├── doctor11.png │ │ ├── doctor12.png │ │ ├── doctor13.jpg │ │ ├── doctor14.jpg │ │ ├── doctor15.jpg │ │ ├── doctor2.png │ │ ├── doctor3.png │ │ ├── doctor4.jpg │ │ ├── doctor5.jpg │ │ ├── doctor6.jpg │ │ ├── doctor7.jpg │ │ ├── doctor8.jpg │ │ └── doctor9.jpg │ ├── facility-img │ │ ├── New folder │ │ │ ├── facility-icon1.png │ │ │ ├── facility-icon2.png │ │ │ ├── facility-icon3.png │ │ │ └── facility-icon4.png │ │ ├── facility-icon1.png │ │ ├── facility-icon2.png │ │ ├── facility-icon3.png │ │ ├── facility-icon4.png │ │ ├── facility-icon5.png │ │ ├── facility-icon6.png │ │ └── facility-shape-img.png │ ├── facility-shape.png │ ├── footer-bg.jpg │ ├── home-seven │ │ ├── home-seven-banner1.jpg │ │ ├── home-seven-banner2.jpg │ │ └── home-seven-banner3.jpg │ ├── log-in-img.jpg │ ├── logo.png │ ├── page-banner-bg1.jpg │ ├── page-banner-bg2.jpg │ ├── page-banner-bg3.jpg │ ├── page-banner-bg4.jpg │ ├── prevention-shape-2.png │ ├── professional-register │ │ ├── doctor-image-two.png │ │ ├── img-doctor.png │ │ ├── money.svg │ │ ├── reliable.svg │ │ └── time.svg │ ├── services-bg.jpg │ ├── services-card-shape.png │ ├── shape │ │ ├── appointment-shape.png │ │ ├── counter-shape.png │ │ ├── emergency-shape.png │ │ ├── shape1.png │ │ └── work-shape.png │ ├── sign-in-img.jpg │ └── work-bg.jpg ├── index.html ├── lib │ ├── adapter-latest.js │ └── webrtc_adaptor.js ├── loading-ico.gif ├── logo.png ├── logo1.png ├── logo3.png ├── logo5.png ├── no-avatar.png ├── no-image.jpg ├── offline.png ├── online.png ├── paperclip-ico.png ├── private.png ├── robots.txt ├── sounds │ └── default-audio.mp3 ├── under-construction.jpg ├── user.png ├── xcam-logo-black.png └── xcam-logo-primary-color.png ├── server ├── index.ts └── routes.ts ├── src ├── antmedia │ ├── LocalStream.tsx │ ├── constants.ts │ ├── index.tsx │ ├── interfaces │ │ ├── Device.ts │ │ ├── IceServer.ts │ │ ├── WebRTCAdaptor.ts │ │ ├── WebRTCAdaptorConfigs.ts │ │ └── index.ts │ └── utils.ts ├── components │ ├── auth │ │ ├── login │ │ │ ├── footer-login-form.tsx │ │ │ ├── performer-login-form.tsx │ │ │ └── user-login-form.tsx │ │ ├── password-change.tsx │ │ └── register │ │ │ ├── ProfessionalRegister.tsx │ │ │ ├── hooks │ │ │ └── useWorkWithUs.tsx │ │ │ ├── model-register-form.tsx │ │ │ ├── studio-register-form.tsx │ │ │ ├── user-register-form.tsx │ │ │ └── work-with-us-steps.tsx │ ├── coinbase │ │ ├── CoinbasePayment.tsx │ │ └── index.less │ ├── commission │ │ ├── commission-card.less │ │ └── commission-card.tsx │ ├── common │ │ ├── base │ │ │ ├── drop-option.tsx │ │ │ ├── icons.tsx │ │ │ ├── input-item-list.tsx │ │ │ ├── list-item.tsx │ │ │ ├── loader.less │ │ │ ├── loader.tsx │ │ │ ├── nav.tsx │ │ │ ├── popup-commission.tsx │ │ │ ├── popup.less │ │ │ ├── popup.tsx │ │ │ ├── scroll-bar.less │ │ │ ├── scroll-bar.tsx │ │ │ ├── select │ │ │ │ ├── countries.tsx │ │ │ │ ├── galleries.tsx │ │ │ │ ├── profile.tsx │ │ │ │ └── timezones.tsx │ │ │ ├── tabs.tsx │ │ │ ├── token-card.less │ │ │ ├── token-card.tsx │ │ │ └── trash.tsx │ │ ├── index.tsx │ │ ├── layout │ │ │ ├── NFooter.js │ │ │ ├── banner.less │ │ │ ├── banner.tsx │ │ │ ├── footer.less │ │ │ ├── footer.tsx │ │ │ ├── form-register-placeholder.tsx │ │ │ ├── header.less │ │ │ ├── header.tsx │ │ │ ├── index.ts │ │ │ ├── left-header-content.less │ │ │ ├── left-header-content.tsx │ │ │ ├── menu.tsx │ │ │ ├── numberformat.tsx │ │ │ ├── page-header.tsx │ │ │ ├── page.less │ │ │ ├── page.tsx │ │ │ ├── popup-18plus-content.less │ │ │ ├── popup-18plus-content.tsx │ │ │ ├── sider.less │ │ │ └── sider.tsx │ │ ├── recaptcha.less │ │ └── recaptcha.tsx │ ├── file │ │ └── image-upload.tsx │ ├── galleries │ │ ├── gallery-card.tsx │ │ ├── gallery-dashboard-grid.tsx │ │ ├── index.less │ │ └── purchased-gallery-card.tsx │ ├── homepage │ │ ├── AboutUs.js │ │ ├── DoctorsStyleOne.js │ │ ├── EmergencyArea.js │ │ ├── Facility.js │ │ ├── FunFactStyleOne.js │ │ ├── MainBanner.js │ │ ├── PageBanner.js │ │ ├── Services.js │ │ ├── Subscribe.js │ │ └── TestimonialStyleOne.js │ ├── messages │ │ ├── Compose.tsx │ │ ├── ConversationList.less │ │ ├── ConversationList.tsx │ │ ├── ConversationListItem.less │ │ ├── ConversationListItem.tsx │ │ ├── ConversationSearch.less │ │ ├── ConversationSearch.tsx │ │ ├── Message.tsx │ │ ├── MessageList.tsx │ │ ├── Messenger.tsx │ │ ├── emotions.tsx │ │ └── uploadPhoto.tsx │ ├── order │ │ ├── detail.less │ │ ├── form-order.tsx │ │ ├── index.ts │ │ ├── order-status.tsx │ │ ├── search-filter.tsx │ │ └── table-list.tsx │ ├── payment │ │ ├── bitpay-form.tsx │ │ ├── direct-deposit-form.tsx │ │ ├── index.ts │ │ ├── issue-check-us-setting-form.tsx │ │ ├── paxum-form.tsx │ │ ├── paypal-setting-form.tsx │ │ └── wire-transfer-setting-form.tsx │ ├── payout-request │ │ ├── form.tsx │ │ ├── index.less │ │ ├── studio-performer-request-table.tsx │ │ └── table.tsx │ ├── paypal │ │ └── PaypalPayment.tsx │ ├── performer-assets │ │ ├── common │ │ │ ├── modal-buy-assets.less │ │ │ └── modal-buy-assets.tsx │ │ ├── gallery-carousel │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── product-carousel │ │ │ ├── index.tsx │ │ │ ├── product-carousel.less │ │ │ └── product-item.tsx │ │ └── video-carousel │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── video-item.tsx │ ├── performer │ │ ├── broadcast-setting-form.tsx │ │ ├── contact-setting-form.tsx │ │ ├── documents-setting-form.tsx │ │ ├── earning-history-table.tsx │ │ ├── earning-independent-table.tsx │ │ ├── earning-studio-operated-table.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ ├── performer-carousel.less │ │ ├── performer-carousel.tsx │ │ ├── performer-grid.tsx │ │ ├── performer-username.tsx │ │ ├── profile-card.tsx │ │ ├── profile-detail.less │ │ ├── profile-detail.tsx │ │ ├── profile-edit-form.tsx │ │ ├── settings │ │ │ ├── default-price-form.tsx │ │ │ └── disable-account-form.tsx │ │ └── streaming-status-update-form.tsx │ ├── photos │ │ ├── gallery-form.tsx │ │ ├── index.less │ │ ├── photo-dashboard-grid.tsx │ │ └── photo-form.tsx │ ├── products │ │ ├── index.less │ │ ├── product-card.tsx │ │ ├── products-form.tsx │ │ └── products-table.tsx │ ├── refund-request │ │ ├── form.tsx │ │ └── table-list.tsx │ ├── schedules │ │ └── form.tsx │ ├── stream-chat │ │ ├── Compose.less │ │ ├── Compose.tsx │ │ ├── Message.less │ │ ├── Message.tsx │ │ ├── MessageList.less │ │ ├── MessageList.tsx │ │ ├── Messenger.less │ │ ├── Messenger.tsx │ │ ├── UserList.tsx │ │ ├── chat-box.less │ │ ├── chat-box.tsx │ │ └── emotions.tsx │ ├── streaming │ │ ├── ant-media-player.tsx │ │ ├── contants.ts │ │ ├── description.tsx │ │ ├── footer.less │ │ ├── footer.tsx │ │ ├── group-streaming-container.less │ │ ├── group-streaming-container.tsx │ │ ├── header.less │ │ ├── header.tsx │ │ ├── index.less │ │ ├── index.tsx │ │ ├── private-streaming-container.less │ │ ├── private-streaming-container.tsx │ │ ├── publisher.tsx │ │ ├── subscriber.tsx │ │ ├── tip │ │ │ ├── content.less │ │ │ └── content.tsx │ │ └── webrtc │ │ │ ├── groupchat │ │ │ ├── publisher.tsx │ │ │ └── subscriber.tsx │ │ │ └── privatechat │ │ │ ├── index.less │ │ │ ├── publisher.tsx │ │ │ └── subscriber.tsx │ ├── studio │ │ ├── account-information.tsx │ │ ├── index.less │ │ ├── models-manager │ │ │ ├── search-online-status.tsx │ │ │ ├── studio-add-model-form.tsx │ │ │ ├── studio-commissions-table.tsx │ │ │ ├── studio-models-stats-table.tsx │ │ │ └── studio-models-table.tsx │ │ ├── payout-request │ │ │ └── studio-payout-request-table.tsx │ │ ├── studio-commission-table.tsx │ │ ├── studio-earning-table.tsx │ │ └── studio-login-form.tsx │ ├── transaction │ │ └── table-list.tsx │ ├── user │ │ ├── avatar-upload.tsx │ │ ├── favourite-performer-grid.less │ │ ├── favourite-performer-grid.tsx │ │ ├── payment-token-history-table.tsx │ │ ├── performer-filter.less │ │ ├── performer-filter.tsx │ │ ├── profile.less │ │ ├── profile.tsx │ │ └── update-password-form.tsx │ └── videos │ │ ├── index.less │ │ ├── popup-video.tsx │ │ ├── purchased-video-card.tsx │ │ ├── video-form.tsx │ │ ├── video-grid.tsx │ │ └── video-single-card.tsx ├── constants.tsx ├── interfaces │ ├── auth.ts │ ├── banner.ts │ ├── earning.ts │ ├── favourite.ts │ ├── index.ts │ ├── order.ts │ ├── payout-request.ts │ ├── peformer-assets.ts │ ├── performer-categories.ts │ ├── performer.ts │ ├── photo.ts │ ├── post.ts │ ├── redux.ts │ ├── refund-request.ts │ ├── setting.ts │ ├── stream.ts │ ├── studio.ts │ ├── token-package.ts │ ├── transaction.ts │ ├── ui-config.ts │ ├── user.ts │ └── utils.ts ├── layouts │ ├── auth-layout.less │ ├── auth-layout.tsx │ ├── base-layout.tsx │ ├── default-layout.less │ ├── default-layout.tsx │ ├── maintenance-layout.tsx │ ├── primary-layout.less │ ├── primary-layout.tsx │ ├── public-layout.less │ └── public-layout.tsx ├── lib │ ├── date.ts │ ├── file.ts │ ├── index.ts │ ├── internet.ts │ ├── layout.ts │ ├── message.ts │ ├── redux.ts │ ├── rules.ts │ ├── storeHolder.ts │ ├── stream.ts │ ├── string.ts │ └── utils.ts ├── redux │ ├── actions.ts │ ├── auth │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── banner │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── galleries │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── message │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── performer │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── photos │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── products │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── rootReducer.ts │ ├── rootSaga.ts │ ├── selectors.ts │ ├── settings │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── store.ts │ ├── stream-chat │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── streaming │ │ ├── actions.ts │ │ └── reducers.ts │ ├── studio │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── ui │ │ ├── actions.ts │ │ └── reducers.ts │ ├── user │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ ├── videos │ │ ├── actions.ts │ │ ├── reducers.ts │ │ └── sagas.ts │ └── withReduxSaga.ts ├── services │ ├── api-request.ts │ ├── auth.service.ts │ ├── banner.service.ts │ ├── coinbase.service.ts │ ├── config.ts │ ├── earning.service.ts │ ├── favourite.service.ts │ ├── gallery.service.ts │ ├── index.ts │ ├── message.service.ts │ ├── order.service.ts │ ├── payment-information.service.ts │ ├── payout-request.ts │ ├── paypal.service.ts │ ├── perfomer-categories.service.ts │ ├── perfomer.service.ts │ ├── photo.service.ts │ ├── post.service.ts │ ├── product.service.ts │ ├── purchase-item.service.ts │ ├── refund-request.service.ts │ ├── setting.service.ts │ ├── stream.service.tsx │ ├── studio.service.ts │ ├── token-package.service.ts │ ├── transaction.service.ts │ ├── user.service.ts │ ├── utils.service.ts │ └── video.service.ts ├── socket │ ├── Event.tsx │ ├── Socket.tsx │ ├── SocketContext.tsx │ ├── index.ts │ └── utils.ts └── videojs │ ├── contants.ts │ └── mic-controls │ ├── audio-mute-toggle-button.ts │ └── plugin.ts ├── style ├── animate.css ├── bootstrap.min.css ├── boxicons.min.css ├── default.less ├── flaticon.css ├── index.less ├── meanmenu.css ├── mixin.less ├── responsive.css ├── responsive.css.map ├── responsive.scss ├── style.css ├── style.css.map ├── style.scss ├── vars.less └── videojs.less ├── tsconfig.json ├── tsconfig.server.json └── utils ├── ActiveLink.js └── baseUrl.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/.babelrc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/sftp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/.vscode/sftp.json -------------------------------------------------------------------------------- /@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/global.d.ts -------------------------------------------------------------------------------- /@types/less.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/less.d.ts -------------------------------------------------------------------------------- /@types/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/node.d.ts -------------------------------------------------------------------------------- /@types/redux.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/redux.d.ts -------------------------------------------------------------------------------- /@types/videojs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/videojs.d.ts -------------------------------------------------------------------------------- /@types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/@types/window.d.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/README.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/env.example -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/package.json -------------------------------------------------------------------------------- /pages/403.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/403.tsx -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/_error.tsx -------------------------------------------------------------------------------- /pages/about-us/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/about-us/index.less -------------------------------------------------------------------------------- /pages/about-us/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/about-us/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/account-settings/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/account-settings/index.less -------------------------------------------------------------------------------- /pages/account/performer/account-settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/account-settings/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/earning/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/earning/index.less -------------------------------------------------------------------------------- /pages/account/performer/earning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/earning/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/galleries/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/galleries/add.tsx -------------------------------------------------------------------------------- /pages/account/performer/galleries/index.less: -------------------------------------------------------------------------------- 1 | .performer-gallries-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/account/performer/galleries/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/galleries/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/galleries/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/galleries/update.tsx -------------------------------------------------------------------------------- /pages/account/performer/geo-block/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/geo-block/index.less -------------------------------------------------------------------------------- /pages/account/performer/geo-block/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/geo-block/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/orders/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/orders/detail.tsx -------------------------------------------------------------------------------- /pages/account/performer/orders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/orders/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/payout-requests/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/payout-requests/create.tsx -------------------------------------------------------------------------------- /pages/account/performer/payout-requests/index.less: -------------------------------------------------------------------------------- 1 | .payout-request-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/account/performer/payout-requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/payout-requests/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/payout-requests/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/payout-requests/update.tsx -------------------------------------------------------------------------------- /pages/account/performer/photos/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/photos/add.tsx -------------------------------------------------------------------------------- /pages/account/performer/photos/index.less: -------------------------------------------------------------------------------- 1 | .performer-photos-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/account/performer/photos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/photos/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/photos/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/photos/update.tsx -------------------------------------------------------------------------------- /pages/account/performer/products/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/products/add.tsx -------------------------------------------------------------------------------- /pages/account/performer/products/index.less: -------------------------------------------------------------------------------- 1 | .performer-products-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/account/performer/products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/products/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/products/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/products/update.tsx -------------------------------------------------------------------------------- /pages/account/performer/profile/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/profile/index.less -------------------------------------------------------------------------------- /pages/account/performer/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/profile/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/schedules/index.less: -------------------------------------------------------------------------------- 1 | .performer-schedule-page { 2 | background-color: white; 3 | } -------------------------------------------------------------------------------- /pages/account/performer/schedules/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/schedules/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/videos/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/videos/add.tsx -------------------------------------------------------------------------------- /pages/account/performer/videos/index.less: -------------------------------------------------------------------------------- 1 | .performer-videos-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/account/performer/videos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/videos/index.tsx -------------------------------------------------------------------------------- /pages/account/performer/videos/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/performer/videos/update.tsx -------------------------------------------------------------------------------- /pages/account/user/account-settings/index.less: -------------------------------------------------------------------------------- 1 | .account-setting-page { 2 | background-color: white; 3 | } -------------------------------------------------------------------------------- /pages/account/user/account-settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/account-settings/index.tsx -------------------------------------------------------------------------------- /pages/account/user/favorites/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/favorites/index.less -------------------------------------------------------------------------------- /pages/account/user/favorites/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/favorites/index.tsx -------------------------------------------------------------------------------- /pages/account/user/funds-tokens/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/funds-tokens/index.less -------------------------------------------------------------------------------- /pages/account/user/funds-tokens/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/funds-tokens/index.tsx -------------------------------------------------------------------------------- /pages/account/user/orders/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/orders/detail.tsx -------------------------------------------------------------------------------- /pages/account/user/orders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/orders/index.tsx -------------------------------------------------------------------------------- /pages/account/user/payment-token-history/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/payment-token-history/index.less -------------------------------------------------------------------------------- /pages/account/user/payment-token-history/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/payment-token-history/index.tsx -------------------------------------------------------------------------------- /pages/account/user/purchased-gallery/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/account/user/purchased-gallery/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/purchased-gallery/index.tsx -------------------------------------------------------------------------------- /pages/account/user/purchased-product/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/purchased-product/index.less -------------------------------------------------------------------------------- /pages/account/user/purchased-product/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/purchased-product/index.tsx -------------------------------------------------------------------------------- /pages/account/user/purchased-video/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/account/user/purchased-video/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/purchased-video/index.tsx -------------------------------------------------------------------------------- /pages/account/user/refund-request/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/refund-request/index.tsx -------------------------------------------------------------------------------- /pages/account/user/refund-request/request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/refund-request/request.tsx -------------------------------------------------------------------------------- /pages/account/user/transaction-history/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/transaction-history/index.less -------------------------------------------------------------------------------- /pages/account/user/transaction-history/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/account/user/transaction-history/index.tsx -------------------------------------------------------------------------------- /pages/auth/forgot-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/forgot-password/index.tsx -------------------------------------------------------------------------------- /pages/auth/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/index.less -------------------------------------------------------------------------------- /pages/auth/login/performer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/login/performer.tsx -------------------------------------------------------------------------------- /pages/auth/login/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/login/user.tsx -------------------------------------------------------------------------------- /pages/auth/register/model.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/register/model.tsx -------------------------------------------------------------------------------- /pages/auth/register/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/register/user.tsx -------------------------------------------------------------------------------- /pages/auth/resend-verification-email/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/auth/resend-verification-email/index.tsx -------------------------------------------------------------------------------- /pages/contact-us/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/contact-us/index.less -------------------------------------------------------------------------------- /pages/contact-us/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/contact-us/index.tsx -------------------------------------------------------------------------------- /pages/faq/Faqs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/faq/Faqs.js -------------------------------------------------------------------------------- /pages/faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/faq/index.tsx -------------------------------------------------------------------------------- /pages/galleries/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/galleries/index.tsx -------------------------------------------------------------------------------- /pages/how-it-works/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/how-it-works/index.less -------------------------------------------------------------------------------- /pages/how-it-works/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/how-it-works/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/live/groupchat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/groupchat.tsx -------------------------------------------------------------------------------- /pages/live/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/index.less -------------------------------------------------------------------------------- /pages/live/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/index.tsx -------------------------------------------------------------------------------- /pages/live/privatechat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/privatechat.tsx -------------------------------------------------------------------------------- /pages/live/webrtc/groupchat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/webrtc/groupchat.tsx -------------------------------------------------------------------------------- /pages/live/webrtc/privatechat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/live/webrtc/privatechat.tsx -------------------------------------------------------------------------------- /pages/livecam/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/livecam/index.tsx -------------------------------------------------------------------------------- /pages/mental-health-conditions/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/mental-health-conditions/index.less -------------------------------------------------------------------------------- /pages/mental-health-conditions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/mental-health-conditions/index.tsx -------------------------------------------------------------------------------- /pages/messages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/messages/index.tsx -------------------------------------------------------------------------------- /pages/our-therapists/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/our-therapists/index.less -------------------------------------------------------------------------------- /pages/our-therapists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/our-therapists/index.tsx -------------------------------------------------------------------------------- /pages/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/page/index.tsx -------------------------------------------------------------------------------- /pages/photos/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/photos/index.less -------------------------------------------------------------------------------- /pages/photos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/photos/index.tsx -------------------------------------------------------------------------------- /pages/privacy-policy/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/privacy-policy/index.less -------------------------------------------------------------------------------- /pages/privacy-policy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/privacy-policy/index.tsx -------------------------------------------------------------------------------- /pages/products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/products/index.tsx -------------------------------------------------------------------------------- /pages/stream/groupchat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/groupchat.tsx -------------------------------------------------------------------------------- /pages/stream/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/index.less -------------------------------------------------------------------------------- /pages/stream/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/index.tsx -------------------------------------------------------------------------------- /pages/stream/privatechat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/privatechat.tsx -------------------------------------------------------------------------------- /pages/stream/webrtc/groupchat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/webrtc/groupchat.tsx -------------------------------------------------------------------------------- /pages/stream/webrtc/privatechat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/stream/webrtc/privatechat.tsx -------------------------------------------------------------------------------- /pages/studio/account-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/account-settings.tsx -------------------------------------------------------------------------------- /pages/studio/commissions/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/commissions/index.less -------------------------------------------------------------------------------- /pages/studio/commissions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/commissions/index.tsx -------------------------------------------------------------------------------- /pages/studio/earning/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/earning/index.less -------------------------------------------------------------------------------- /pages/studio/earning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/earning/index.tsx -------------------------------------------------------------------------------- /pages/studio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/index.tsx -------------------------------------------------------------------------------- /pages/studio/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/login.tsx -------------------------------------------------------------------------------- /pages/studio/models/add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/models/add.tsx -------------------------------------------------------------------------------- /pages/studio/models/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/models/index.less -------------------------------------------------------------------------------- /pages/studio/models/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/models/index.tsx -------------------------------------------------------------------------------- /pages/studio/models/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/models/stats.tsx -------------------------------------------------------------------------------- /pages/studio/payout-requests/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/payout-requests/create.tsx -------------------------------------------------------------------------------- /pages/studio/payout-requests/index.less: -------------------------------------------------------------------------------- 1 | .payout-request-page { 2 | background-color: white; 3 | height: 100%; 4 | } -------------------------------------------------------------------------------- /pages/studio/payout-requests/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/payout-requests/index.tsx -------------------------------------------------------------------------------- /pages/studio/payout-requests/performer-requests.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/payout-requests/performer-requests.tsx -------------------------------------------------------------------------------- /pages/studio/payout-requests/update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/payout-requests/update.tsx -------------------------------------------------------------------------------- /pages/studio/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/studio/register.tsx -------------------------------------------------------------------------------- /pages/tag/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/tag/index.less -------------------------------------------------------------------------------- /pages/tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/tag/index.tsx -------------------------------------------------------------------------------- /pages/terms-conditions/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/terms-conditions/index.less -------------------------------------------------------------------------------- /pages/terms-conditions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/terms-conditions/index.tsx -------------------------------------------------------------------------------- /pages/type-of-therapy/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/type-of-therapy/index.less -------------------------------------------------------------------------------- /pages/type-of-therapy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/type-of-therapy/index.tsx -------------------------------------------------------------------------------- /pages/videos/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/videos/detail.tsx -------------------------------------------------------------------------------- /pages/videos/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/videos/index.less -------------------------------------------------------------------------------- /pages/videos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/videos/index.tsx -------------------------------------------------------------------------------- /pages/work-with-us/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/work-with-us/index.less -------------------------------------------------------------------------------- /pages/work-with-us/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/pages/work-with-us/index.tsx -------------------------------------------------------------------------------- /public/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/1.png -------------------------------------------------------------------------------- /public/background-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/background-login.jpg -------------------------------------------------------------------------------- /public/background-responsive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/background-responsive.svg -------------------------------------------------------------------------------- /public/banner-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/banner-bottom.png -------------------------------------------------------------------------------- /public/crown - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/crown - Copy.png -------------------------------------------------------------------------------- /public/css/antd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/css/antd.min.css -------------------------------------------------------------------------------- /public/css/dark-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/css/dark-theme.js -------------------------------------------------------------------------------- /public/default-user-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/default-user-icon.png -------------------------------------------------------------------------------- /public/emotion-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/emotion-ico.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/feature-1.png -------------------------------------------------------------------------------- /public/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/feature-2.png -------------------------------------------------------------------------------- /public/feature-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/feature-4.png -------------------------------------------------------------------------------- /public/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Flaticon.eot -------------------------------------------------------------------------------- /public/fonts/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Flaticon.svg -------------------------------------------------------------------------------- /public/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /public/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Flaticon.woff -------------------------------------------------------------------------------- /public/fonts/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Flaticon.woff2 -------------------------------------------------------------------------------- /public/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /public/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /public/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/boxicons.eot -------------------------------------------------------------------------------- /public/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/boxicons.svg -------------------------------------------------------------------------------- /public/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/boxicons.ttf -------------------------------------------------------------------------------- /public/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/boxicons.woff -------------------------------------------------------------------------------- /public/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /public/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/gallery.png -------------------------------------------------------------------------------- /public/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/group.png -------------------------------------------------------------------------------- /public/icons/Group 532.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/Group 532.svg -------------------------------------------------------------------------------- /public/icons/Payment Tokens history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/Payment Tokens history.svg -------------------------------------------------------------------------------- /public/icons/Performer payout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/Performer payout.svg -------------------------------------------------------------------------------- /public/icons/Transaction history.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/Transaction history.svg -------------------------------------------------------------------------------- /public/icons/add-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/add-circle.svg -------------------------------------------------------------------------------- /public/icons/chat-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/chat-settings.svg -------------------------------------------------------------------------------- /public/icons/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/checkbox.svg -------------------------------------------------------------------------------- /public/icons/coinbase-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/coinbase-logo.svg -------------------------------------------------------------------------------- /public/icons/commission.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/commission.svg -------------------------------------------------------------------------------- /public/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/delete.svg -------------------------------------------------------------------------------- /public/icons/down filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/down filled.svg -------------------------------------------------------------------------------- /public/icons/earnings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/earnings.svg -------------------------------------------------------------------------------- /public/icons/expand-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/expand-outlined.svg -------------------------------------------------------------------------------- /public/icons/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/eye.svg -------------------------------------------------------------------------------- /public/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/facebook.svg -------------------------------------------------------------------------------- /public/icons/favourite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/favourite.svg -------------------------------------------------------------------------------- /public/icons/female-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/female-sign.svg -------------------------------------------------------------------------------- /public/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/filter.svg -------------------------------------------------------------------------------- /public/icons/geo-blocking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/geo-blocking.svg -------------------------------------------------------------------------------- /public/icons/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/gift.svg -------------------------------------------------------------------------------- /public/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/group.svg -------------------------------------------------------------------------------- /public/icons/images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/images.svg -------------------------------------------------------------------------------- /public/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/instagram.svg -------------------------------------------------------------------------------- /public/icons/jam_transgender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/jam_transgender.svg -------------------------------------------------------------------------------- /public/icons/left-directional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/left-directional.svg -------------------------------------------------------------------------------- /public/icons/male-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/male-sign.svg -------------------------------------------------------------------------------- /public/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/message.svg -------------------------------------------------------------------------------- /public/icons/models.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/models.svg -------------------------------------------------------------------------------- /public/icons/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/mute.svg -------------------------------------------------------------------------------- /public/icons/my-products.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/my-products.svg -------------------------------------------------------------------------------- /public/icons/payout request.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/payout request.svg -------------------------------------------------------------------------------- /public/icons/payout requests.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/payout requests.svg -------------------------------------------------------------------------------- /public/icons/performer sats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/performer sats.svg -------------------------------------------------------------------------------- /public/icons/product.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/product.svg -------------------------------------------------------------------------------- /public/icons/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/profile.svg -------------------------------------------------------------------------------- /public/icons/purchased-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/purchased-image.svg -------------------------------------------------------------------------------- /public/icons/purchased-items.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/purchased-items.svg -------------------------------------------------------------------------------- /public/icons/purchased-videos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/purchased-videos.svg -------------------------------------------------------------------------------- /public/icons/right-directional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/right-directional.svg -------------------------------------------------------------------------------- /public/icons/schedules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/schedules.svg -------------------------------------------------------------------------------- /public/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/search.svg -------------------------------------------------------------------------------- /public/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/send.svg -------------------------------------------------------------------------------- /public/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/settings.svg -------------------------------------------------------------------------------- /public/icons/smily.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/smily.svg -------------------------------------------------------------------------------- /public/icons/star-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/star-outlined.svg -------------------------------------------------------------------------------- /public/icons/stop broadcasrting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/stop broadcasrting.svg -------------------------------------------------------------------------------- /public/icons/tokens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/tokens.svg -------------------------------------------------------------------------------- /public/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/twitter.svg -------------------------------------------------------------------------------- /public/icons/upload file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/upload file.svg -------------------------------------------------------------------------------- /public/icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/video.svg -------------------------------------------------------------------------------- /public/icons/video1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/video1.svg -------------------------------------------------------------------------------- /public/icons/volume-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/icons/volume-full.svg -------------------------------------------------------------------------------- /public/img/123.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/123.mp4 -------------------------------------------------------------------------------- /public/img/about/about-shape-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/about/about-shape-1.png -------------------------------------------------------------------------------- /public/img/about/about-shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/about/about-shape-2.png -------------------------------------------------------------------------------- /public/img/about/about-shape-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/about/about-shape-3.png -------------------------------------------------------------------------------- /public/img/about/about1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/about/about1.jpg -------------------------------------------------------------------------------- /public/img/appointment-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/appointment-bg-2.png -------------------------------------------------------------------------------- /public/img/appointment-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/appointment-bg.jpg -------------------------------------------------------------------------------- /public/img/appointment-bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/appointment-bg3.jpg -------------------------------------------------------------------------------- /public/img/client/client-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client-bg.jpg -------------------------------------------------------------------------------- /public/img/client/client1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client1.jpg -------------------------------------------------------------------------------- /public/img/client/client2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client2.jpg -------------------------------------------------------------------------------- /public/img/client/client3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client3.jpg -------------------------------------------------------------------------------- /public/img/client/client4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client4.jpg -------------------------------------------------------------------------------- /public/img/client/client5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client5.jpg -------------------------------------------------------------------------------- /public/img/client/client6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/client/client6.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor1.png -------------------------------------------------------------------------------- /public/img/doctors/doctor10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor10.png -------------------------------------------------------------------------------- /public/img/doctors/doctor11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor11.png -------------------------------------------------------------------------------- /public/img/doctors/doctor12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor12.png -------------------------------------------------------------------------------- /public/img/doctors/doctor13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor13.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor14.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor15.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor2.png -------------------------------------------------------------------------------- /public/img/doctors/doctor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor3.png -------------------------------------------------------------------------------- /public/img/doctors/doctor4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor4.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor5.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor6.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor7.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor8.jpg -------------------------------------------------------------------------------- /public/img/doctors/doctor9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/doctors/doctor9.jpg -------------------------------------------------------------------------------- /public/img/facility-img/New folder/facility-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/New folder/facility-icon1.png -------------------------------------------------------------------------------- /public/img/facility-img/New folder/facility-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/New folder/facility-icon2.png -------------------------------------------------------------------------------- /public/img/facility-img/New folder/facility-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/New folder/facility-icon3.png -------------------------------------------------------------------------------- /public/img/facility-img/New folder/facility-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/New folder/facility-icon4.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon1.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon2.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon3.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon4.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon5.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-icon6.png -------------------------------------------------------------------------------- /public/img/facility-img/facility-shape-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-img/facility-shape-img.png -------------------------------------------------------------------------------- /public/img/facility-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/facility-shape.png -------------------------------------------------------------------------------- /public/img/footer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/footer-bg.jpg -------------------------------------------------------------------------------- /public/img/home-seven/home-seven-banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/home-seven/home-seven-banner1.jpg -------------------------------------------------------------------------------- /public/img/home-seven/home-seven-banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/home-seven/home-seven-banner2.jpg -------------------------------------------------------------------------------- /public/img/home-seven/home-seven-banner3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/home-seven/home-seven-banner3.jpg -------------------------------------------------------------------------------- /public/img/log-in-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/log-in-img.jpg -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/page-banner-bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/page-banner-bg1.jpg -------------------------------------------------------------------------------- /public/img/page-banner-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/page-banner-bg2.jpg -------------------------------------------------------------------------------- /public/img/page-banner-bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/page-banner-bg3.jpg -------------------------------------------------------------------------------- /public/img/page-banner-bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/page-banner-bg4.jpg -------------------------------------------------------------------------------- /public/img/prevention-shape-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/prevention-shape-2.png -------------------------------------------------------------------------------- /public/img/professional-register/doctor-image-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/professional-register/doctor-image-two.png -------------------------------------------------------------------------------- /public/img/professional-register/img-doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/professional-register/img-doctor.png -------------------------------------------------------------------------------- /public/img/professional-register/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/professional-register/money.svg -------------------------------------------------------------------------------- /public/img/professional-register/reliable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/professional-register/reliable.svg -------------------------------------------------------------------------------- /public/img/professional-register/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/professional-register/time.svg -------------------------------------------------------------------------------- /public/img/services-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/services-bg.jpg -------------------------------------------------------------------------------- /public/img/services-card-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/services-card-shape.png -------------------------------------------------------------------------------- /public/img/shape/appointment-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/shape/appointment-shape.png -------------------------------------------------------------------------------- /public/img/shape/counter-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/shape/counter-shape.png -------------------------------------------------------------------------------- /public/img/shape/emergency-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/shape/emergency-shape.png -------------------------------------------------------------------------------- /public/img/shape/shape1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/shape/shape1.png -------------------------------------------------------------------------------- /public/img/shape/work-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/shape/work-shape.png -------------------------------------------------------------------------------- /public/img/sign-in-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/sign-in-img.jpg -------------------------------------------------------------------------------- /public/img/work-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/img/work-bg.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/lib/adapter-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/lib/adapter-latest.js -------------------------------------------------------------------------------- /public/lib/webrtc_adaptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/lib/webrtc_adaptor.js -------------------------------------------------------------------------------- /public/loading-ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/loading-ico.gif -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/logo1.png -------------------------------------------------------------------------------- /public/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/logo3.png -------------------------------------------------------------------------------- /public/logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/logo5.png -------------------------------------------------------------------------------- /public/no-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/no-avatar.png -------------------------------------------------------------------------------- /public/no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/no-image.jpg -------------------------------------------------------------------------------- /public/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/offline.png -------------------------------------------------------------------------------- /public/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/online.png -------------------------------------------------------------------------------- /public/paperclip-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/paperclip-ico.png -------------------------------------------------------------------------------- /public/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/private.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /public/sounds/default-audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/sounds/default-audio.mp3 -------------------------------------------------------------------------------- /public/under-construction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/under-construction.jpg -------------------------------------------------------------------------------- /public/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/user.png -------------------------------------------------------------------------------- /public/xcam-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/xcam-logo-black.png -------------------------------------------------------------------------------- /public/xcam-logo-primary-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/public/xcam-logo-primary-color.png -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/server/routes.ts -------------------------------------------------------------------------------- /src/antmedia/LocalStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/LocalStream.tsx -------------------------------------------------------------------------------- /src/antmedia/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/constants.ts -------------------------------------------------------------------------------- /src/antmedia/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/index.tsx -------------------------------------------------------------------------------- /src/antmedia/interfaces/Device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/interfaces/Device.ts -------------------------------------------------------------------------------- /src/antmedia/interfaces/IceServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/interfaces/IceServer.ts -------------------------------------------------------------------------------- /src/antmedia/interfaces/WebRTCAdaptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/interfaces/WebRTCAdaptor.ts -------------------------------------------------------------------------------- /src/antmedia/interfaces/WebRTCAdaptorConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/interfaces/WebRTCAdaptorConfigs.ts -------------------------------------------------------------------------------- /src/antmedia/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/interfaces/index.ts -------------------------------------------------------------------------------- /src/antmedia/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/antmedia/utils.ts -------------------------------------------------------------------------------- /src/components/auth/login/footer-login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/login/footer-login-form.tsx -------------------------------------------------------------------------------- /src/components/auth/login/performer-login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/login/performer-login-form.tsx -------------------------------------------------------------------------------- /src/components/auth/login/user-login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/login/user-login-form.tsx -------------------------------------------------------------------------------- /src/components/auth/password-change.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/password-change.tsx -------------------------------------------------------------------------------- /src/components/auth/register/ProfessionalRegister.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/ProfessionalRegister.tsx -------------------------------------------------------------------------------- /src/components/auth/register/hooks/useWorkWithUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/hooks/useWorkWithUs.tsx -------------------------------------------------------------------------------- /src/components/auth/register/model-register-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/model-register-form.tsx -------------------------------------------------------------------------------- /src/components/auth/register/studio-register-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/studio-register-form.tsx -------------------------------------------------------------------------------- /src/components/auth/register/user-register-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/user-register-form.tsx -------------------------------------------------------------------------------- /src/components/auth/register/work-with-us-steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/auth/register/work-with-us-steps.tsx -------------------------------------------------------------------------------- /src/components/coinbase/CoinbasePayment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/coinbase/CoinbasePayment.tsx -------------------------------------------------------------------------------- /src/components/coinbase/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/coinbase/index.less -------------------------------------------------------------------------------- /src/components/commission/commission-card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/commission/commission-card.less -------------------------------------------------------------------------------- /src/components/commission/commission-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/commission/commission-card.tsx -------------------------------------------------------------------------------- /src/components/common/base/drop-option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/drop-option.tsx -------------------------------------------------------------------------------- /src/components/common/base/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/icons.tsx -------------------------------------------------------------------------------- /src/components/common/base/input-item-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/input-item-list.tsx -------------------------------------------------------------------------------- /src/components/common/base/list-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/list-item.tsx -------------------------------------------------------------------------------- /src/components/common/base/loader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/loader.less -------------------------------------------------------------------------------- /src/components/common/base/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/loader.tsx -------------------------------------------------------------------------------- /src/components/common/base/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/nav.tsx -------------------------------------------------------------------------------- /src/components/common/base/popup-commission.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/popup-commission.tsx -------------------------------------------------------------------------------- /src/components/common/base/popup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/popup.less -------------------------------------------------------------------------------- /src/components/common/base/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/popup.tsx -------------------------------------------------------------------------------- /src/components/common/base/scroll-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/scroll-bar.less -------------------------------------------------------------------------------- /src/components/common/base/scroll-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/scroll-bar.tsx -------------------------------------------------------------------------------- /src/components/common/base/select/countries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/select/countries.tsx -------------------------------------------------------------------------------- /src/components/common/base/select/galleries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/select/galleries.tsx -------------------------------------------------------------------------------- /src/components/common/base/select/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/select/profile.tsx -------------------------------------------------------------------------------- /src/components/common/base/select/timezones.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/select/timezones.tsx -------------------------------------------------------------------------------- /src/components/common/base/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/tabs.tsx -------------------------------------------------------------------------------- /src/components/common/base/token-card.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/token-card.less -------------------------------------------------------------------------------- /src/components/common/base/token-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/token-card.tsx -------------------------------------------------------------------------------- /src/components/common/base/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/base/trash.tsx -------------------------------------------------------------------------------- /src/components/common/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/index.tsx -------------------------------------------------------------------------------- /src/components/common/layout/NFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/NFooter.js -------------------------------------------------------------------------------- /src/components/common/layout/banner.less: -------------------------------------------------------------------------------- 1 | .banner { 2 | // margin: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/common/layout/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/banner.tsx -------------------------------------------------------------------------------- /src/components/common/layout/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/footer.less -------------------------------------------------------------------------------- /src/components/common/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/footer.tsx -------------------------------------------------------------------------------- /src/components/common/layout/form-register-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/form-register-placeholder.tsx -------------------------------------------------------------------------------- /src/components/common/layout/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/header.less -------------------------------------------------------------------------------- /src/components/common/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/header.tsx -------------------------------------------------------------------------------- /src/components/common/layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/index.ts -------------------------------------------------------------------------------- /src/components/common/layout/left-header-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/left-header-content.less -------------------------------------------------------------------------------- /src/components/common/layout/left-header-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/left-header-content.tsx -------------------------------------------------------------------------------- /src/components/common/layout/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/menu.tsx -------------------------------------------------------------------------------- /src/components/common/layout/numberformat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/numberformat.tsx -------------------------------------------------------------------------------- /src/components/common/layout/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/page-header.tsx -------------------------------------------------------------------------------- /src/components/common/layout/page.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/page.less -------------------------------------------------------------------------------- /src/components/common/layout/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/page.tsx -------------------------------------------------------------------------------- /src/components/common/layout/popup-18plus-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/popup-18plus-content.less -------------------------------------------------------------------------------- /src/components/common/layout/popup-18plus-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/popup-18plus-content.tsx -------------------------------------------------------------------------------- /src/components/common/layout/sider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/sider.less -------------------------------------------------------------------------------- /src/components/common/layout/sider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/layout/sider.tsx -------------------------------------------------------------------------------- /src/components/common/recaptcha.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/recaptcha.less -------------------------------------------------------------------------------- /src/components/common/recaptcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/common/recaptcha.tsx -------------------------------------------------------------------------------- /src/components/file/image-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/file/image-upload.tsx -------------------------------------------------------------------------------- /src/components/galleries/gallery-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/galleries/gallery-card.tsx -------------------------------------------------------------------------------- /src/components/galleries/gallery-dashboard-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/galleries/gallery-dashboard-grid.tsx -------------------------------------------------------------------------------- /src/components/galleries/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/galleries/index.less -------------------------------------------------------------------------------- /src/components/galleries/purchased-gallery-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/galleries/purchased-gallery-card.tsx -------------------------------------------------------------------------------- /src/components/homepage/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/AboutUs.js -------------------------------------------------------------------------------- /src/components/homepage/DoctorsStyleOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/DoctorsStyleOne.js -------------------------------------------------------------------------------- /src/components/homepage/EmergencyArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/EmergencyArea.js -------------------------------------------------------------------------------- /src/components/homepage/Facility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/Facility.js -------------------------------------------------------------------------------- /src/components/homepage/FunFactStyleOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/FunFactStyleOne.js -------------------------------------------------------------------------------- /src/components/homepage/MainBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/MainBanner.js -------------------------------------------------------------------------------- /src/components/homepage/PageBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/PageBanner.js -------------------------------------------------------------------------------- /src/components/homepage/Services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/Services.js -------------------------------------------------------------------------------- /src/components/homepage/Subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/Subscribe.js -------------------------------------------------------------------------------- /src/components/homepage/TestimonialStyleOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/homepage/TestimonialStyleOne.js -------------------------------------------------------------------------------- /src/components/messages/Compose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/Compose.tsx -------------------------------------------------------------------------------- /src/components/messages/ConversationList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationList.less -------------------------------------------------------------------------------- /src/components/messages/ConversationList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationList.tsx -------------------------------------------------------------------------------- /src/components/messages/ConversationListItem.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationListItem.less -------------------------------------------------------------------------------- /src/components/messages/ConversationListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationListItem.tsx -------------------------------------------------------------------------------- /src/components/messages/ConversationSearch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationSearch.less -------------------------------------------------------------------------------- /src/components/messages/ConversationSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/ConversationSearch.tsx -------------------------------------------------------------------------------- /src/components/messages/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/Message.tsx -------------------------------------------------------------------------------- /src/components/messages/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/MessageList.tsx -------------------------------------------------------------------------------- /src/components/messages/Messenger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/Messenger.tsx -------------------------------------------------------------------------------- /src/components/messages/emotions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/emotions.tsx -------------------------------------------------------------------------------- /src/components/messages/uploadPhoto.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/messages/uploadPhoto.tsx -------------------------------------------------------------------------------- /src/components/order/detail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/detail.less -------------------------------------------------------------------------------- /src/components/order/form-order.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/form-order.tsx -------------------------------------------------------------------------------- /src/components/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/index.ts -------------------------------------------------------------------------------- /src/components/order/order-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/order-status.tsx -------------------------------------------------------------------------------- /src/components/order/search-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/search-filter.tsx -------------------------------------------------------------------------------- /src/components/order/table-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/order/table-list.tsx -------------------------------------------------------------------------------- /src/components/payment/bitpay-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/bitpay-form.tsx -------------------------------------------------------------------------------- /src/components/payment/direct-deposit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/direct-deposit-form.tsx -------------------------------------------------------------------------------- /src/components/payment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/index.ts -------------------------------------------------------------------------------- /src/components/payment/issue-check-us-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/issue-check-us-setting-form.tsx -------------------------------------------------------------------------------- /src/components/payment/paxum-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/paxum-form.tsx -------------------------------------------------------------------------------- /src/components/payment/paypal-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/paypal-setting-form.tsx -------------------------------------------------------------------------------- /src/components/payment/wire-transfer-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payment/wire-transfer-setting-form.tsx -------------------------------------------------------------------------------- /src/components/payout-request/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payout-request/form.tsx -------------------------------------------------------------------------------- /src/components/payout-request/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payout-request/index.less -------------------------------------------------------------------------------- /src/components/payout-request/studio-performer-request-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payout-request/studio-performer-request-table.tsx -------------------------------------------------------------------------------- /src/components/payout-request/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/payout-request/table.tsx -------------------------------------------------------------------------------- /src/components/paypal/PaypalPayment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/paypal/PaypalPayment.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/common/modal-buy-assets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/common/modal-buy-assets.less -------------------------------------------------------------------------------- /src/components/performer-assets/common/modal-buy-assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/common/modal-buy-assets.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/gallery-carousel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/gallery-carousel/index.less -------------------------------------------------------------------------------- /src/components/performer-assets/gallery-carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/gallery-carousel/index.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/product-carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/product-carousel/index.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/product-carousel/product-carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/product-carousel/product-carousel.less -------------------------------------------------------------------------------- /src/components/performer-assets/product-carousel/product-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/product-carousel/product-item.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/video-carousel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/video-carousel/index.less -------------------------------------------------------------------------------- /src/components/performer-assets/video-carousel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/video-carousel/index.tsx -------------------------------------------------------------------------------- /src/components/performer-assets/video-carousel/video-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer-assets/video-carousel/video-item.tsx -------------------------------------------------------------------------------- /src/components/performer/broadcast-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/broadcast-setting-form.tsx -------------------------------------------------------------------------------- /src/components/performer/contact-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/contact-setting-form.tsx -------------------------------------------------------------------------------- /src/components/performer/documents-setting-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/documents-setting-form.tsx -------------------------------------------------------------------------------- /src/components/performer/earning-history-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/earning-history-table.tsx -------------------------------------------------------------------------------- /src/components/performer/earning-independent-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/earning-independent-table.tsx -------------------------------------------------------------------------------- /src/components/performer/earning-studio-operated-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/earning-studio-operated-table.tsx -------------------------------------------------------------------------------- /src/components/performer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/index.less -------------------------------------------------------------------------------- /src/components/performer/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './performer-username'; 2 | -------------------------------------------------------------------------------- /src/components/performer/performer-carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/performer-carousel.less -------------------------------------------------------------------------------- /src/components/performer/performer-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/performer-carousel.tsx -------------------------------------------------------------------------------- /src/components/performer/performer-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/performer-grid.tsx -------------------------------------------------------------------------------- /src/components/performer/performer-username.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/performer-username.tsx -------------------------------------------------------------------------------- /src/components/performer/profile-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/profile-card.tsx -------------------------------------------------------------------------------- /src/components/performer/profile-detail.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/profile-detail.less -------------------------------------------------------------------------------- /src/components/performer/profile-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/profile-detail.tsx -------------------------------------------------------------------------------- /src/components/performer/profile-edit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/profile-edit-form.tsx -------------------------------------------------------------------------------- /src/components/performer/settings/default-price-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/settings/default-price-form.tsx -------------------------------------------------------------------------------- /src/components/performer/settings/disable-account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/settings/disable-account-form.tsx -------------------------------------------------------------------------------- /src/components/performer/streaming-status-update-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/performer/streaming-status-update-form.tsx -------------------------------------------------------------------------------- /src/components/photos/gallery-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/photos/gallery-form.tsx -------------------------------------------------------------------------------- /src/components/photos/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/photos/index.less -------------------------------------------------------------------------------- /src/components/photos/photo-dashboard-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/photos/photo-dashboard-grid.tsx -------------------------------------------------------------------------------- /src/components/photos/photo-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/photos/photo-form.tsx -------------------------------------------------------------------------------- /src/components/products/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/products/index.less -------------------------------------------------------------------------------- /src/components/products/product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/products/product-card.tsx -------------------------------------------------------------------------------- /src/components/products/products-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/products/products-form.tsx -------------------------------------------------------------------------------- /src/components/products/products-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/products/products-table.tsx -------------------------------------------------------------------------------- /src/components/refund-request/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/refund-request/form.tsx -------------------------------------------------------------------------------- /src/components/refund-request/table-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/refund-request/table-list.tsx -------------------------------------------------------------------------------- /src/components/schedules/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/schedules/form.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/Compose.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Compose.less -------------------------------------------------------------------------------- /src/components/stream-chat/Compose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Compose.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/Message.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Message.less -------------------------------------------------------------------------------- /src/components/stream-chat/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Message.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/MessageList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/MessageList.less -------------------------------------------------------------------------------- /src/components/stream-chat/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/MessageList.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/Messenger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Messenger.less -------------------------------------------------------------------------------- /src/components/stream-chat/Messenger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/Messenger.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/UserList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/UserList.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/chat-box.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/chat-box.less -------------------------------------------------------------------------------- /src/components/stream-chat/chat-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/chat-box.tsx -------------------------------------------------------------------------------- /src/components/stream-chat/emotions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/stream-chat/emotions.tsx -------------------------------------------------------------------------------- /src/components/streaming/ant-media-player.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/ant-media-player.tsx -------------------------------------------------------------------------------- /src/components/streaming/contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/contants.ts -------------------------------------------------------------------------------- /src/components/streaming/description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/description.tsx -------------------------------------------------------------------------------- /src/components/streaming/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/footer.less -------------------------------------------------------------------------------- /src/components/streaming/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/footer.tsx -------------------------------------------------------------------------------- /src/components/streaming/group-streaming-container.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/group-streaming-container.less -------------------------------------------------------------------------------- /src/components/streaming/group-streaming-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/group-streaming-container.tsx -------------------------------------------------------------------------------- /src/components/streaming/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/header.less -------------------------------------------------------------------------------- /src/components/streaming/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/header.tsx -------------------------------------------------------------------------------- /src/components/streaming/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/index.less -------------------------------------------------------------------------------- /src/components/streaming/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './description'; 2 | -------------------------------------------------------------------------------- /src/components/streaming/private-streaming-container.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/private-streaming-container.less -------------------------------------------------------------------------------- /src/components/streaming/private-streaming-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/private-streaming-container.tsx -------------------------------------------------------------------------------- /src/components/streaming/publisher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/publisher.tsx -------------------------------------------------------------------------------- /src/components/streaming/subscriber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/subscriber.tsx -------------------------------------------------------------------------------- /src/components/streaming/tip/content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/tip/content.less -------------------------------------------------------------------------------- /src/components/streaming/tip/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/tip/content.tsx -------------------------------------------------------------------------------- /src/components/streaming/webrtc/groupchat/publisher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/webrtc/groupchat/publisher.tsx -------------------------------------------------------------------------------- /src/components/streaming/webrtc/groupchat/subscriber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/webrtc/groupchat/subscriber.tsx -------------------------------------------------------------------------------- /src/components/streaming/webrtc/privatechat/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/webrtc/privatechat/index.less -------------------------------------------------------------------------------- /src/components/streaming/webrtc/privatechat/publisher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/webrtc/privatechat/publisher.tsx -------------------------------------------------------------------------------- /src/components/streaming/webrtc/privatechat/subscriber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/streaming/webrtc/privatechat/subscriber.tsx -------------------------------------------------------------------------------- /src/components/studio/account-information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/account-information.tsx -------------------------------------------------------------------------------- /src/components/studio/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/index.less -------------------------------------------------------------------------------- /src/components/studio/models-manager/search-online-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/models-manager/search-online-status.tsx -------------------------------------------------------------------------------- /src/components/studio/models-manager/studio-add-model-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/models-manager/studio-add-model-form.tsx -------------------------------------------------------------------------------- /src/components/studio/models-manager/studio-commissions-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/models-manager/studio-commissions-table.tsx -------------------------------------------------------------------------------- /src/components/studio/models-manager/studio-models-stats-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/models-manager/studio-models-stats-table.tsx -------------------------------------------------------------------------------- /src/components/studio/models-manager/studio-models-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/models-manager/studio-models-table.tsx -------------------------------------------------------------------------------- /src/components/studio/payout-request/studio-payout-request-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/payout-request/studio-payout-request-table.tsx -------------------------------------------------------------------------------- /src/components/studio/studio-commission-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/studio-commission-table.tsx -------------------------------------------------------------------------------- /src/components/studio/studio-earning-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/studio-earning-table.tsx -------------------------------------------------------------------------------- /src/components/studio/studio-login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/studio/studio-login-form.tsx -------------------------------------------------------------------------------- /src/components/transaction/table-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/transaction/table-list.tsx -------------------------------------------------------------------------------- /src/components/user/avatar-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/avatar-upload.tsx -------------------------------------------------------------------------------- /src/components/user/favourite-performer-grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/favourite-performer-grid.less -------------------------------------------------------------------------------- /src/components/user/favourite-performer-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/favourite-performer-grid.tsx -------------------------------------------------------------------------------- /src/components/user/payment-token-history-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/payment-token-history-table.tsx -------------------------------------------------------------------------------- /src/components/user/performer-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/performer-filter.less -------------------------------------------------------------------------------- /src/components/user/performer-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/performer-filter.tsx -------------------------------------------------------------------------------- /src/components/user/profile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/profile.less -------------------------------------------------------------------------------- /src/components/user/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/profile.tsx -------------------------------------------------------------------------------- /src/components/user/update-password-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/user/update-password-form.tsx -------------------------------------------------------------------------------- /src/components/videos/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/index.less -------------------------------------------------------------------------------- /src/components/videos/popup-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/popup-video.tsx -------------------------------------------------------------------------------- /src/components/videos/purchased-video-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/purchased-video-card.tsx -------------------------------------------------------------------------------- /src/components/videos/video-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/video-form.tsx -------------------------------------------------------------------------------- /src/components/videos/video-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/video-grid.tsx -------------------------------------------------------------------------------- /src/components/videos/video-single-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/components/videos/video-single-card.tsx -------------------------------------------------------------------------------- /src/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/constants.tsx -------------------------------------------------------------------------------- /src/interfaces/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/auth.ts -------------------------------------------------------------------------------- /src/interfaces/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/banner.ts -------------------------------------------------------------------------------- /src/interfaces/earning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/earning.ts -------------------------------------------------------------------------------- /src/interfaces/favourite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/favourite.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/interfaces/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/order.ts -------------------------------------------------------------------------------- /src/interfaces/payout-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/payout-request.ts -------------------------------------------------------------------------------- /src/interfaces/peformer-assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/peformer-assets.ts -------------------------------------------------------------------------------- /src/interfaces/performer-categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/performer-categories.ts -------------------------------------------------------------------------------- /src/interfaces/performer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/performer.ts -------------------------------------------------------------------------------- /src/interfaces/photo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/photo.ts -------------------------------------------------------------------------------- /src/interfaces/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/post.ts -------------------------------------------------------------------------------- /src/interfaces/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/redux.ts -------------------------------------------------------------------------------- /src/interfaces/refund-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/refund-request.ts -------------------------------------------------------------------------------- /src/interfaces/setting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/setting.ts -------------------------------------------------------------------------------- /src/interfaces/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/stream.ts -------------------------------------------------------------------------------- /src/interfaces/studio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/studio.ts -------------------------------------------------------------------------------- /src/interfaces/token-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/token-package.ts -------------------------------------------------------------------------------- /src/interfaces/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/transaction.ts -------------------------------------------------------------------------------- /src/interfaces/ui-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/ui-config.ts -------------------------------------------------------------------------------- /src/interfaces/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/user.ts -------------------------------------------------------------------------------- /src/interfaces/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/interfaces/utils.ts -------------------------------------------------------------------------------- /src/layouts/auth-layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/auth-layout.less -------------------------------------------------------------------------------- /src/layouts/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/auth-layout.tsx -------------------------------------------------------------------------------- /src/layouts/base-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/base-layout.tsx -------------------------------------------------------------------------------- /src/layouts/default-layout.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/layouts/default-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/default-layout.tsx -------------------------------------------------------------------------------- /src/layouts/maintenance-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/maintenance-layout.tsx -------------------------------------------------------------------------------- /src/layouts/primary-layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/primary-layout.less -------------------------------------------------------------------------------- /src/layouts/primary-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/primary-layout.tsx -------------------------------------------------------------------------------- /src/layouts/public-layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/public-layout.less -------------------------------------------------------------------------------- /src/layouts/public-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/layouts/public-layout.tsx -------------------------------------------------------------------------------- /src/lib/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/date.ts -------------------------------------------------------------------------------- /src/lib/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/file.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/internet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/internet.ts -------------------------------------------------------------------------------- /src/lib/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/layout.ts -------------------------------------------------------------------------------- /src/lib/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/message.ts -------------------------------------------------------------------------------- /src/lib/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/redux.ts -------------------------------------------------------------------------------- /src/lib/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/rules.ts -------------------------------------------------------------------------------- /src/lib/storeHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/storeHolder.ts -------------------------------------------------------------------------------- /src/lib/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/stream.ts -------------------------------------------------------------------------------- /src/lib/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/string.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/redux/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/actions.ts -------------------------------------------------------------------------------- /src/redux/auth/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/auth/actions.ts -------------------------------------------------------------------------------- /src/redux/auth/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/auth/reducers.ts -------------------------------------------------------------------------------- /src/redux/auth/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/auth/sagas.ts -------------------------------------------------------------------------------- /src/redux/banner/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/banner/actions.ts -------------------------------------------------------------------------------- /src/redux/banner/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/banner/reducers.ts -------------------------------------------------------------------------------- /src/redux/banner/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/banner/sagas.ts -------------------------------------------------------------------------------- /src/redux/galleries/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/galleries/actions.ts -------------------------------------------------------------------------------- /src/redux/galleries/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/galleries/reducers.ts -------------------------------------------------------------------------------- /src/redux/galleries/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/galleries/sagas.ts -------------------------------------------------------------------------------- /src/redux/message/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/message/actions.ts -------------------------------------------------------------------------------- /src/redux/message/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/message/reducers.ts -------------------------------------------------------------------------------- /src/redux/message/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/message/sagas.ts -------------------------------------------------------------------------------- /src/redux/performer/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/performer/actions.ts -------------------------------------------------------------------------------- /src/redux/performer/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/performer/reducers.ts -------------------------------------------------------------------------------- /src/redux/performer/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/performer/sagas.ts -------------------------------------------------------------------------------- /src/redux/photos/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/photos/actions.ts -------------------------------------------------------------------------------- /src/redux/photos/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/photos/reducers.ts -------------------------------------------------------------------------------- /src/redux/photos/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/photos/sagas.ts -------------------------------------------------------------------------------- /src/redux/products/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/products/actions.ts -------------------------------------------------------------------------------- /src/redux/products/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/products/reducers.ts -------------------------------------------------------------------------------- /src/redux/products/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/products/sagas.ts -------------------------------------------------------------------------------- /src/redux/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/rootReducer.ts -------------------------------------------------------------------------------- /src/redux/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/rootSaga.ts -------------------------------------------------------------------------------- /src/redux/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/selectors.ts -------------------------------------------------------------------------------- /src/redux/settings/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/settings/actions.ts -------------------------------------------------------------------------------- /src/redux/settings/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/settings/reducers.ts -------------------------------------------------------------------------------- /src/redux/settings/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/settings/sagas.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/redux/stream-chat/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/stream-chat/actions.ts -------------------------------------------------------------------------------- /src/redux/stream-chat/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/stream-chat/reducers.ts -------------------------------------------------------------------------------- /src/redux/stream-chat/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/stream-chat/sagas.ts -------------------------------------------------------------------------------- /src/redux/streaming/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/streaming/actions.ts -------------------------------------------------------------------------------- /src/redux/streaming/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/streaming/reducers.ts -------------------------------------------------------------------------------- /src/redux/studio/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/studio/actions.ts -------------------------------------------------------------------------------- /src/redux/studio/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/studio/reducers.ts -------------------------------------------------------------------------------- /src/redux/studio/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/studio/sagas.ts -------------------------------------------------------------------------------- /src/redux/ui/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/ui/actions.ts -------------------------------------------------------------------------------- /src/redux/ui/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/ui/reducers.ts -------------------------------------------------------------------------------- /src/redux/user/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/user/actions.ts -------------------------------------------------------------------------------- /src/redux/user/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/user/reducers.ts -------------------------------------------------------------------------------- /src/redux/user/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/user/sagas.ts -------------------------------------------------------------------------------- /src/redux/videos/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/videos/actions.ts -------------------------------------------------------------------------------- /src/redux/videos/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/videos/reducers.ts -------------------------------------------------------------------------------- /src/redux/videos/sagas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/videos/sagas.ts -------------------------------------------------------------------------------- /src/redux/withReduxSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/redux/withReduxSaga.ts -------------------------------------------------------------------------------- /src/services/api-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/api-request.ts -------------------------------------------------------------------------------- /src/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/auth.service.ts -------------------------------------------------------------------------------- /src/services/banner.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/banner.service.ts -------------------------------------------------------------------------------- /src/services/coinbase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/coinbase.service.ts -------------------------------------------------------------------------------- /src/services/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/config.ts -------------------------------------------------------------------------------- /src/services/earning.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/earning.service.ts -------------------------------------------------------------------------------- /src/services/favourite.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/favourite.service.ts -------------------------------------------------------------------------------- /src/services/gallery.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/gallery.service.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/message.service.ts -------------------------------------------------------------------------------- /src/services/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/order.service.ts -------------------------------------------------------------------------------- /src/services/payment-information.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/payment-information.service.ts -------------------------------------------------------------------------------- /src/services/payout-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/payout-request.ts -------------------------------------------------------------------------------- /src/services/paypal.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/paypal.service.ts -------------------------------------------------------------------------------- /src/services/perfomer-categories.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/perfomer-categories.service.ts -------------------------------------------------------------------------------- /src/services/perfomer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/perfomer.service.ts -------------------------------------------------------------------------------- /src/services/photo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/photo.service.ts -------------------------------------------------------------------------------- /src/services/post.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/post.service.ts -------------------------------------------------------------------------------- /src/services/product.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/product.service.ts -------------------------------------------------------------------------------- /src/services/purchase-item.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/purchase-item.service.ts -------------------------------------------------------------------------------- /src/services/refund-request.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/refund-request.service.ts -------------------------------------------------------------------------------- /src/services/setting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/setting.service.ts -------------------------------------------------------------------------------- /src/services/stream.service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/stream.service.tsx -------------------------------------------------------------------------------- /src/services/studio.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/studio.service.ts -------------------------------------------------------------------------------- /src/services/token-package.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/token-package.service.ts -------------------------------------------------------------------------------- /src/services/transaction.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/transaction.service.ts -------------------------------------------------------------------------------- /src/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/user.service.ts -------------------------------------------------------------------------------- /src/services/utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/utils.service.ts -------------------------------------------------------------------------------- /src/services/video.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/services/video.service.ts -------------------------------------------------------------------------------- /src/socket/Event.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/socket/Event.tsx -------------------------------------------------------------------------------- /src/socket/Socket.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/socket/Socket.tsx -------------------------------------------------------------------------------- /src/socket/SocketContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/socket/SocketContext.tsx -------------------------------------------------------------------------------- /src/socket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/socket/index.ts -------------------------------------------------------------------------------- /src/socket/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/socket/utils.ts -------------------------------------------------------------------------------- /src/videojs/contants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/videojs/contants.ts -------------------------------------------------------------------------------- /src/videojs/mic-controls/audio-mute-toggle-button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/videojs/mic-controls/audio-mute-toggle-button.ts -------------------------------------------------------------------------------- /src/videojs/mic-controls/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/src/videojs/mic-controls/plugin.ts -------------------------------------------------------------------------------- /style/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/animate.css -------------------------------------------------------------------------------- /style/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/bootstrap.min.css -------------------------------------------------------------------------------- /style/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/boxicons.min.css -------------------------------------------------------------------------------- /style/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/default.less -------------------------------------------------------------------------------- /style/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/flaticon.css -------------------------------------------------------------------------------- /style/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/index.less -------------------------------------------------------------------------------- /style/meanmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/meanmenu.css -------------------------------------------------------------------------------- /style/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/mixin.less -------------------------------------------------------------------------------- /style/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/responsive.css -------------------------------------------------------------------------------- /style/responsive.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/responsive.css.map -------------------------------------------------------------------------------- /style/responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/responsive.scss -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/style.css -------------------------------------------------------------------------------- /style/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/style.css.map -------------------------------------------------------------------------------- /style/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/style.scss -------------------------------------------------------------------------------- /style/vars.less: -------------------------------------------------------------------------------- 1 | @import './mixin.less'; 2 | -------------------------------------------------------------------------------- /style/videojs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/style/videojs.less -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/tsconfig.server.json -------------------------------------------------------------------------------- /utils/ActiveLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/utils/ActiveLink.js -------------------------------------------------------------------------------- /utils/baseUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtopcoder/24hrtheraphy/HEAD/utils/baseUrl.js --------------------------------------------------------------------------------