├── .env ├── .gitignore ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.png ├── images │ ├── banner-teach.jpg │ ├── blog-banner.png │ ├── bottom-ateach.png │ ├── bottom-teach.png │ ├── bottom-teach.r.png │ ├── bottomaa-teach.png │ ├── business.jpg │ ├── customer-service.png │ ├── demo-image.png │ ├── help-banner.png │ ├── institutions-banner.jpg │ ├── institutions-man.png │ ├── project.png │ └── teams.jpg ├── index.html └── manifest.json ├── src ├── App.jsx ├── api │ ├── customFetch.js │ ├── deleteCompanyUser.js │ ├── deleteCoupon.js │ ├── deleteCourse.js │ ├── deleteInstitutionUser.js │ ├── deleteLesson.js │ ├── getALLCoursesByInstructor.js │ ├── getAllClasses.js │ ├── getAllCourses.js │ ├── getAllInstructors.js │ ├── getAvailablePaymentMethods.js │ ├── getCategories.js │ ├── getCertificate.js │ ├── getChatByUserID.js │ ├── getClass.js │ ├── getCommentsFromLesson.js │ ├── getCompanyMeta.js │ ├── getCompanyUsers.js │ ├── getConferencesByCategoryAndName.js │ ├── getCouponBySlug.js │ ├── getCourseAssignmentStatus.js │ ├── getCourseById.js │ ├── getCourseByLink.js │ ├── getCourseBySlug.js │ ├── getCourseForEdition.js │ ├── getCoursesByCategory.js │ ├── getCoursesByCategoryAndName.js │ ├── getCoursesByInstructor.js │ ├── getCoursesByName.js │ ├── getCoursesFromInstitution.js │ ├── getCreatedCoupons.js │ ├── getCurrentCredits.js │ ├── getGoogleLogin.js │ ├── getInstitutionMetadata.js │ ├── getInstitutionUsers.js │ ├── getInstructorsByName.js │ ├── getJoinConference.js │ ├── getLessonsByCourseID.js │ ├── getLinkToPaypal.js │ ├── getLinkToStripe.js │ ├── getMyConference.js │ ├── getMyCourseProgress.js │ ├── getMyCourses.js │ ├── getMyMessages.js │ ├── getMyTeachers.js │ ├── getMyWishlistFolders.js │ ├── getNotifications.js │ ├── getOtherStudentCourses.js │ ├── getReports.js │ ├── getReviewByCourse.js │ ├── getSearchCoupon.js │ ├── getSpecificReview.js │ ├── getSpecificWishlist.js │ ├── getStudentsByInstructor.js │ ├── getUpdateRole.js │ ├── getUser.js │ ├── getUserBySlug.js │ ├── getUserMetadata.js │ ├── getUserPurchaseHistory.js │ ├── postAssignCourse.js │ ├── postBuyCourse.js │ ├── postChatMessage.js │ ├── postCommentInLesson.js │ ├── postCompanyUser.js │ ├── postCompleteClass.js │ ├── postCoupon.js │ ├── postCreateInstitutionUser.js │ ├── postCreateWishlist.js │ ├── postDeallocateCourse.js │ ├── postFAQ.js │ ├── postGoogleLogin.js │ ├── postInsRegister.js │ ├── postLessonReport.js │ ├── postLogin.js │ ├── postMetaBusiness.js │ ├── postMetaInstitution.js │ ├── postNewBusiness.js │ ├── postNewCourse.js │ ├── postNewLesson.js │ ├── postRegister.js │ ├── postRequestPaymentBrane.js │ ├── postRequestPaymentCardnet.js │ ├── postRequestPaymentPaypal.js │ ├── postRequestPaymentStripe.js │ ├── postResetPassword.js │ ├── postReview.js │ ├── postSendResetEmail.js │ ├── postSubtitle.js │ ├── postUserMetadata.js │ ├── postUserProfileImage.js │ ├── postWishlistAddDelete.js │ ├── publicCourses.js │ ├── putCompanyMetadata.js │ ├── putCoupon.js │ ├── putCourse.js │ ├── putInstitutionMetadata.js │ ├── putLesson.js │ ├── putReview.js │ ├── putUser.js │ ├── putUserMetadata.js │ └── settings.js ├── assets │ ├── icons.js │ ├── icons │ │ ├── add-circle-outline.svg │ │ ├── alert-circle-outline.svg │ │ ├── apps-outline.svg │ │ ├── book.svg │ │ ├── cart-outline.svg │ │ ├── cart.svg │ │ ├── cash-outline.svg │ │ ├── chatbox-ellipses-outline.svg │ │ ├── chatbubbles-outline.svg │ │ ├── checkmark-circle-outline.svg │ │ ├── checkmark-circle.svg │ │ ├── checkmark.svg │ │ ├── chevron-forward.svg │ │ ├── close-outline.svg │ │ ├── community.svg │ │ ├── create-outline.svg │ │ ├── discover.svg │ │ ├── download-outline.svg │ │ ├── ellipse.svg │ │ ├── es.svg │ │ ├── filter.svg │ │ ├── flag.svg │ │ ├── globe.svg │ │ ├── google-button.svg │ │ ├── hammer.svg │ │ ├── heart-outline.svg │ │ ├── help-circle-outline.svg │ │ ├── help-circle.svg │ │ ├── id-card-outline.svg │ │ ├── image-outline.svg │ │ ├── key-outline.svg │ │ ├── link-outline.svg │ │ ├── lock-closed.svg │ │ ├── log-out-outline.svg │ │ ├── logo-apple.svg │ │ ├── logo-brane.svg │ │ ├── logo-closed-captioning.svg │ │ ├── logo-facebook.svg │ │ ├── logo-google.svg │ │ ├── logo-instagram.svg │ │ ├── logo-linkedin.svg │ │ ├── logo-twitter.svg │ │ ├── logo-whatsapp.svg │ │ ├── mail-outline.svg │ │ ├── notifications-outline.svg │ │ ├── pause.svg │ │ ├── people-circle-outline.svg │ │ ├── people.svg │ │ ├── person-circle-outline.svg │ │ ├── person-outline.svg │ │ ├── person.svg │ │ ├── play-circle-outline.svg │ │ ├── pricetag-outline.svg │ │ ├── school-outline.svg │ │ ├── search-outline.svg │ │ ├── search.svg │ │ ├── send.svg │ │ ├── settings.svg │ │ ├── share-social-outline.svg │ │ ├── star-half.svg │ │ ├── star-outline.svg │ │ ├── star.svg │ │ ├── stats-chart.svg │ │ ├── sync.svg │ │ ├── trash-outline.svg │ │ ├── trophy.svg │ │ ├── us.svg │ │ ├── videocam-outline.svg │ │ ├── videocam.svg │ │ └── volume-medium.svg │ ├── images.js │ ├── images │ │ ├── Audience.svg │ │ ├── BG-Teach.svg │ │ ├── Camera.svg │ │ ├── Conferences.svg │ │ ├── FAQImage.svg │ │ ├── Faster.svg │ │ ├── Instructors.svg │ │ ├── News.svg │ │ ├── app-store-badge.png │ │ ├── app-store-badgeEN.png │ │ ├── banner-home-student.jpg │ │ ├── banner-home-studentEN.jpg │ │ ├── banner-landing-home.jpg │ │ ├── banner-small-1.svg │ │ ├── banner-small-2.svg │ │ ├── banner-small-3.svg │ │ ├── bg-login.jpg │ │ ├── bg-need-help.svg │ │ ├── bg-payment-fail.svg │ │ ├── bg-payment.svg │ │ ├── bg-profile-ins.svg │ │ ├── bg-profile.svg │ │ ├── bg-signup.svg │ │ ├── bxs-book-reader.svg │ │ ├── bxs-bookmarks.svg │ │ ├── bxs-bulb.svg │ │ ├── bxs-video.svg │ │ ├── character-1.svg │ │ ├── character-2.svg │ │ ├── community-left.png │ │ ├── community-right.png │ │ ├── cta-institutions.svg │ │ ├── cta-vector-1.svg │ │ ├── cta-vector-2.svg │ │ ├── dots-vertical.svg │ │ ├── dots.svg │ │ ├── estudiante.png │ │ ├── foreground-cta-instructor.svg │ │ ├── google-play-badge.png │ │ ├── google-play-badgeEN.png │ │ ├── grid.png │ │ ├── ins-bg-login.svg │ │ ├── ins-bg-signup.svg │ │ ├── instructor.png │ │ ├── lineas.png │ │ ├── logo-black.svg │ │ ├── logo-cardnet.png │ │ ├── logo-paypal.svg │ │ ├── logo-stripe.svg │ │ ├── logo-white.svg │ │ ├── quotation-marks.svg │ │ ├── recovery-account-illustration-1.svg │ │ ├── recovery-account-illustration-2.svg │ │ ├── service-1.svg │ │ ├── service-2.svg │ │ ├── service-3.svg │ │ ├── service-4.svg │ │ └── subhero.jpg │ └── media.mp4 ├── components │ ├── Categories │ │ ├── Categories.jsx │ │ └── Categories.scss │ ├── Chat │ │ ├── Chat.jsx │ │ └── Chat.scss │ ├── CourseCard │ │ ├── CourseCard.jsx │ │ ├── CourseCard.scss │ │ └── SpecialCourseCard.jsx │ ├── CustomHeaders │ │ ├── BusinessHeader.jsx │ │ ├── CustomHeaders.scss │ │ ├── InstitutionHeader.jsx │ │ └── InstructorHeader.jsx │ ├── DynamicInput │ │ ├── DynamicInput.jsx │ │ └── DynamicInput.scss │ ├── FancyImage │ │ └── FancyImage.jsx │ ├── Footer │ │ ├── Footer.jsx │ │ └── Footer.scss │ ├── Header │ │ ├── Header.jsx │ │ └── Header.scss │ ├── HeaderDropdown │ │ ├── HeaderDropdown.jsx │ │ └── HeaderDropdown.scss │ ├── HeaderToggler │ │ └── HeaderToggler.jsx │ ├── HoldingCard │ │ ├── HoldingCard.jsx │ │ └── HoldingCard.scss │ ├── InternalHeader │ │ ├── InternalHeader.jsx │ │ └── InternalHeader.scss │ ├── Languages │ │ ├── Languages.jsx │ │ └── Languages.scss │ ├── LessonDownloader │ │ ├── LessonDownloader.jsx │ │ └── LessonDownloader.scss │ ├── MsgDropdown │ │ ├── MsgDropdown.jsx │ │ └── MsgDropdown.scss │ ├── NavigationBars │ │ ├── BusinessBar.jsx │ │ ├── InstitutionBar.jsx │ │ ├── InstructorBar.jsx │ │ ├── NavigationBar.scss │ │ ├── StudentBar.jsx │ │ └── SupraContainer.jsx │ ├── Notification │ │ ├── Notification.jsx │ │ └── Notification.scss │ ├── OptionsMenu │ │ ├── OptionsMenu.jsx │ │ └── OptionsMenu.scss │ ├── PageTransition │ │ ├── PageTransition.jsx │ │ └── PageTransition.scss │ ├── ProjectCard │ │ ├── ProjectCard.jsx │ │ └── ProjectCard.scss │ ├── PublicHeader │ │ ├── PublicHeader.jsx │ │ └── PublicHeader.scss │ ├── ReportModal │ │ ├── ReportModal.jsx │ │ └── ReportModal.scss │ ├── ReviewModal │ │ ├── ReviewModal.jsx │ │ └── ReviewModal.scss │ ├── SearchHeader │ │ ├── SearchHeader.jsx │ │ └── SearchHeader.scss │ ├── SpinnerOfDoom │ │ ├── SpinnerOfDoom.jsx │ │ └── SpinnerOfDoom.scss │ ├── Tabulation │ │ └── Tabulation.jsx │ ├── VideoChat │ │ ├── VideoCard.jsx │ │ ├── VideoChat.jsx │ │ └── VideoChat.scss │ ├── Wishlist │ │ ├── Wishlist.jsx │ │ └── Wishlist.scss │ └── WishlistModal │ │ ├── WishlistModal.jsx │ │ └── WishlistModal.scss ├── contexts │ ├── CartContext.js │ ├── CartProvider.jsx │ ├── CategoriesContext.js │ ├── CategoriesProvider.jsx │ ├── DictionaryContext.js │ ├── DictionaryProvider.jsx │ ├── ReportModalContext.js │ ├── ReportModalProvider.jsx │ ├── ReviewModalContext.js │ ├── ReviewModalProvider.jsx │ ├── UserDataContext.js │ ├── UserDataProvider.jsx │ ├── WishlistModalContext.js │ └── WishlistModalProvider.jsx ├── helpers │ ├── ScrollToTop.jsx │ ├── calculateAge.js │ ├── disableReactDevTools.js │ ├── getImageLinkFrom.js │ ├── localStorage.js │ ├── palette.js │ └── shareCurrentPage.js ├── index.js ├── index.scss ├── pages │ ├── Private │ │ ├── Business │ │ │ ├── AddUsers │ │ │ │ ├── AddUsers.jsx │ │ │ │ └── AddUsers.scss │ │ │ ├── FAQ │ │ │ │ ├── FAQDropdown.jsx │ │ │ │ ├── FAQPage.jsx │ │ │ │ └── FAQPage.scss │ │ │ └── StatisticsPage │ │ │ │ ├── StatisticsPage.jsx │ │ │ │ └── StatisticsPage.scss │ │ ├── Institutions │ │ │ ├── HomeInstitutions │ │ │ │ ├── HomeInstitutions.jsx │ │ │ │ └── HomeInstitutions.scss │ │ │ └── ManageInstructors │ │ │ │ ├── ManageInstructors.jsx │ │ │ │ └── ManageInstructors.scss │ │ ├── Instructor │ │ │ ├── CreateConference │ │ │ │ ├── CreateConferenceInfo.jsx │ │ │ │ └── CreateConferencePage.jsx │ │ │ ├── CreateCoupons │ │ │ │ ├── CreateCoupons.jsx │ │ │ │ └── CreateCoupons.scss │ │ │ ├── CreateCourse │ │ │ │ ├── AddLessons.jsx │ │ │ │ ├── CreateCourseInfo.jsx │ │ │ │ ├── CreateCoursePage.jsx │ │ │ │ ├── CreateCoursePage.scss │ │ │ │ ├── InstructorCourseInfo.scss │ │ │ │ ├── InstructorCourseLessons.scss │ │ │ │ └── ListItem.jsx │ │ │ ├── EditCourse │ │ │ │ ├── EditCoursePage.jsx │ │ │ │ ├── EditCoursePage.scss │ │ │ │ ├── LessonAggregator.jsx │ │ │ │ ├── LinkItem.jsx │ │ │ │ ├── SingleLesson.jsx │ │ │ │ ├── TabCourse.jsx │ │ │ │ └── TabLessons.jsx │ │ │ ├── HomeInstructor │ │ │ │ ├── HomeInstructor.jsx │ │ │ │ └── HomeInstructor.scss │ │ │ ├── Messages │ │ │ │ ├── Comments │ │ │ │ │ ├── Comments.jsx │ │ │ │ │ └── Comments.scss │ │ │ │ └── Messages.jsx │ │ │ └── PaymentMethods │ │ │ │ ├── PaymentMethods.jsx │ │ │ │ └── PaymentMethods.scss │ │ ├── Shared │ │ │ ├── AdvancedSearchPage │ │ │ │ ├── AdvancedSearchPage.jsx │ │ │ │ └── AdvancedSearchPage.scss │ │ │ ├── CartPage │ │ │ │ ├── CartPage.jsx │ │ │ │ └── CartPage.scss │ │ │ ├── Chat │ │ │ │ ├── Chat.jsx │ │ │ │ ├── Chat.scss │ │ │ │ └── ChatPage.jsx │ │ │ ├── CoursePage │ │ │ │ ├── CoursePage.jsx │ │ │ │ └── CoursePage.scss │ │ │ ├── DiscoverPage │ │ │ │ ├── Carousel.jsx │ │ │ │ ├── DiscoverPage.jsx │ │ │ │ └── DiscoverPage.scss │ │ │ ├── EditProfilePage │ │ │ │ ├── EditProfilePage.jsx │ │ │ │ └── EditProfilePage.scss │ │ │ ├── MyCoursesPage │ │ │ │ ├── DownloadManager.jsx │ │ │ │ ├── MyCoursesPage.jsx │ │ │ │ └── MyCoursesPage.scss │ │ │ ├── NotificationsPage │ │ │ │ ├── NotificationsPage.jsx │ │ │ │ └── NotificationsPage.scss │ │ │ ├── UserProfilePage │ │ │ │ ├── BusinessProfile.jsx │ │ │ │ ├── InstitutionProfile.jsx │ │ │ │ ├── InstructorProfile.jsx │ │ │ │ ├── Little.jsx │ │ │ │ ├── StudentProfile.jsx │ │ │ │ ├── UserProfilePage.jsx │ │ │ │ └── UserProfilePage.scss │ │ │ └── VideoConferencePage │ │ │ │ ├── VideoConferencePage.scss │ │ │ │ └── VideoConferenceRoom.jsx │ │ └── Student │ │ │ ├── ConferencePage │ │ │ ├── Close.jsx │ │ │ ├── ConferencePage.jsx │ │ │ └── Meeting.jsx │ │ │ ├── LearnPage │ │ │ ├── LearnPage.jsx │ │ │ └── LearnPage.scss │ │ │ ├── LessonPage │ │ │ ├── LessonPage.jsx │ │ │ └── LessonPage.scss │ │ │ ├── PostPayment │ │ │ ├── PaymentFailure.jsx │ │ │ └── SuccessfulPurchase.jsx │ │ │ ├── RoleSelection │ │ │ ├── RoleSelection.jsx │ │ │ └── RoleSelection.scss │ │ │ ├── SearchPage │ │ │ ├── SearchPage.jsx │ │ │ └── SearchPage.scss │ │ │ └── WishlistPage │ │ │ ├── Wish.jsx │ │ │ ├── Wish.scss │ │ │ ├── WishlistPage.jsx │ │ │ └── WishlistPage.scss │ └── Public │ │ ├── AuthPage │ │ ├── AccountRecoveryBox │ │ │ ├── AccountRecoveryBox.jsx │ │ │ └── AccountRecoveryBox.scss │ │ ├── AuthPage.jsx │ │ ├── AuthPage.scss │ │ ├── InsSignupBox │ │ │ ├── InsSignupBox.jsx │ │ │ └── InsSignupBox.scss │ │ ├── LoginBox │ │ │ ├── LoginBox.jsx │ │ │ └── LoginBox.scss │ │ └── SignupBox │ │ │ ├── SignupBox.jsx │ │ │ └── SignupBox.scss │ │ ├── Blog │ │ ├── Article.jsx │ │ ├── BlogCard.jsx │ │ ├── BlogPage.jsx │ │ ├── BlogPage.scss │ │ └── HelpCenter.jsx │ │ ├── BusinessPage │ │ ├── BusinessPage.jsx │ │ └── BusinessPage.scss │ │ ├── Contact │ │ ├── Contact.jsx │ │ └── Contact.scss │ │ ├── InstitutionsPage │ │ ├── InstitutionsPage.jsx │ │ └── InstitutionsPage.scss │ │ ├── LandingPageHome │ │ ├── LandingPageHome.jsx │ │ └── LandingPageHome.scss │ │ ├── PolicyTerms │ │ ├── Policy.jsx │ │ ├── PolicyTerms.scss │ │ └── Terms.jsx │ │ └── TeachPage │ │ ├── TeachPage.jsx │ │ └── TeachPage.scss ├── router │ └── AppRouter.jsx └── styles │ ├── global.scss │ └── variables.scss └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP = false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Brane App 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/images/banner-teach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/banner-teach.jpg -------------------------------------------------------------------------------- /public/images/blog-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/blog-banner.png -------------------------------------------------------------------------------- /public/images/bottom-ateach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/bottom-ateach.png -------------------------------------------------------------------------------- /public/images/bottom-teach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/bottom-teach.png -------------------------------------------------------------------------------- /public/images/bottom-teach.r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/bottom-teach.r.png -------------------------------------------------------------------------------- /public/images/bottomaa-teach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/bottomaa-teach.png -------------------------------------------------------------------------------- /public/images/business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/business.jpg -------------------------------------------------------------------------------- /public/images/customer-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/customer-service.png -------------------------------------------------------------------------------- /public/images/demo-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/demo-image.png -------------------------------------------------------------------------------- /public/images/help-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/help-banner.png -------------------------------------------------------------------------------- /public/images/institutions-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/institutions-banner.jpg -------------------------------------------------------------------------------- /public/images/institutions-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/institutions-man.png -------------------------------------------------------------------------------- /public/images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/project.png -------------------------------------------------------------------------------- /public/images/teams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/images/teams.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/api/customFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/customFetch.js -------------------------------------------------------------------------------- /src/api/deleteCompanyUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/deleteCompanyUser.js -------------------------------------------------------------------------------- /src/api/deleteCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/deleteCoupon.js -------------------------------------------------------------------------------- /src/api/deleteCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/deleteCourse.js -------------------------------------------------------------------------------- /src/api/deleteInstitutionUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/deleteInstitutionUser.js -------------------------------------------------------------------------------- /src/api/deleteLesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/deleteLesson.js -------------------------------------------------------------------------------- /src/api/getALLCoursesByInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getALLCoursesByInstructor.js -------------------------------------------------------------------------------- /src/api/getAllClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getAllClasses.js -------------------------------------------------------------------------------- /src/api/getAllCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getAllCourses.js -------------------------------------------------------------------------------- /src/api/getAllInstructors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getAllInstructors.js -------------------------------------------------------------------------------- /src/api/getAvailablePaymentMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getAvailablePaymentMethods.js -------------------------------------------------------------------------------- /src/api/getCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCategories.js -------------------------------------------------------------------------------- /src/api/getCertificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCertificate.js -------------------------------------------------------------------------------- /src/api/getChatByUserID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getChatByUserID.js -------------------------------------------------------------------------------- /src/api/getClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getClass.js -------------------------------------------------------------------------------- /src/api/getCommentsFromLesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCommentsFromLesson.js -------------------------------------------------------------------------------- /src/api/getCompanyMeta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCompanyMeta.js -------------------------------------------------------------------------------- /src/api/getCompanyUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCompanyUsers.js -------------------------------------------------------------------------------- /src/api/getConferencesByCategoryAndName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getConferencesByCategoryAndName.js -------------------------------------------------------------------------------- /src/api/getCouponBySlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCouponBySlug.js -------------------------------------------------------------------------------- /src/api/getCourseAssignmentStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCourseAssignmentStatus.js -------------------------------------------------------------------------------- /src/api/getCourseById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCourseById.js -------------------------------------------------------------------------------- /src/api/getCourseByLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCourseByLink.js -------------------------------------------------------------------------------- /src/api/getCourseBySlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCourseBySlug.js -------------------------------------------------------------------------------- /src/api/getCourseForEdition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCourseForEdition.js -------------------------------------------------------------------------------- /src/api/getCoursesByCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCoursesByCategory.js -------------------------------------------------------------------------------- /src/api/getCoursesByCategoryAndName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCoursesByCategoryAndName.js -------------------------------------------------------------------------------- /src/api/getCoursesByInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCoursesByInstructor.js -------------------------------------------------------------------------------- /src/api/getCoursesByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCoursesByName.js -------------------------------------------------------------------------------- /src/api/getCoursesFromInstitution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCoursesFromInstitution.js -------------------------------------------------------------------------------- /src/api/getCreatedCoupons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCreatedCoupons.js -------------------------------------------------------------------------------- /src/api/getCurrentCredits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getCurrentCredits.js -------------------------------------------------------------------------------- /src/api/getGoogleLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getGoogleLogin.js -------------------------------------------------------------------------------- /src/api/getInstitutionMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getInstitutionMetadata.js -------------------------------------------------------------------------------- /src/api/getInstitutionUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getInstitutionUsers.js -------------------------------------------------------------------------------- /src/api/getInstructorsByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getInstructorsByName.js -------------------------------------------------------------------------------- /src/api/getJoinConference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getJoinConference.js -------------------------------------------------------------------------------- /src/api/getLessonsByCourseID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getLessonsByCourseID.js -------------------------------------------------------------------------------- /src/api/getLinkToPaypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getLinkToPaypal.js -------------------------------------------------------------------------------- /src/api/getLinkToStripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getLinkToStripe.js -------------------------------------------------------------------------------- /src/api/getMyConference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyConference.js -------------------------------------------------------------------------------- /src/api/getMyCourseProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyCourseProgress.js -------------------------------------------------------------------------------- /src/api/getMyCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyCourses.js -------------------------------------------------------------------------------- /src/api/getMyMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyMessages.js -------------------------------------------------------------------------------- /src/api/getMyTeachers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyTeachers.js -------------------------------------------------------------------------------- /src/api/getMyWishlistFolders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getMyWishlistFolders.js -------------------------------------------------------------------------------- /src/api/getNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getNotifications.js -------------------------------------------------------------------------------- /src/api/getOtherStudentCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getOtherStudentCourses.js -------------------------------------------------------------------------------- /src/api/getReports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getReports.js -------------------------------------------------------------------------------- /src/api/getReviewByCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getReviewByCourse.js -------------------------------------------------------------------------------- /src/api/getSearchCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getSearchCoupon.js -------------------------------------------------------------------------------- /src/api/getSpecificReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getSpecificReview.js -------------------------------------------------------------------------------- /src/api/getSpecificWishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getSpecificWishlist.js -------------------------------------------------------------------------------- /src/api/getStudentsByInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getStudentsByInstructor.js -------------------------------------------------------------------------------- /src/api/getUpdateRole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getUpdateRole.js -------------------------------------------------------------------------------- /src/api/getUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getUser.js -------------------------------------------------------------------------------- /src/api/getUserBySlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getUserBySlug.js -------------------------------------------------------------------------------- /src/api/getUserMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getUserMetadata.js -------------------------------------------------------------------------------- /src/api/getUserPurchaseHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/getUserPurchaseHistory.js -------------------------------------------------------------------------------- /src/api/postAssignCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postAssignCourse.js -------------------------------------------------------------------------------- /src/api/postBuyCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postBuyCourse.js -------------------------------------------------------------------------------- /src/api/postChatMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postChatMessage.js -------------------------------------------------------------------------------- /src/api/postCommentInLesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCommentInLesson.js -------------------------------------------------------------------------------- /src/api/postCompanyUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCompanyUser.js -------------------------------------------------------------------------------- /src/api/postCompleteClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCompleteClass.js -------------------------------------------------------------------------------- /src/api/postCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCoupon.js -------------------------------------------------------------------------------- /src/api/postCreateInstitutionUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCreateInstitutionUser.js -------------------------------------------------------------------------------- /src/api/postCreateWishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postCreateWishlist.js -------------------------------------------------------------------------------- /src/api/postDeallocateCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postDeallocateCourse.js -------------------------------------------------------------------------------- /src/api/postFAQ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postFAQ.js -------------------------------------------------------------------------------- /src/api/postGoogleLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postGoogleLogin.js -------------------------------------------------------------------------------- /src/api/postInsRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postInsRegister.js -------------------------------------------------------------------------------- /src/api/postLessonReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postLessonReport.js -------------------------------------------------------------------------------- /src/api/postLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postLogin.js -------------------------------------------------------------------------------- /src/api/postMetaBusiness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postMetaBusiness.js -------------------------------------------------------------------------------- /src/api/postMetaInstitution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postMetaInstitution.js -------------------------------------------------------------------------------- /src/api/postNewBusiness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postNewBusiness.js -------------------------------------------------------------------------------- /src/api/postNewCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postNewCourse.js -------------------------------------------------------------------------------- /src/api/postNewLesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postNewLesson.js -------------------------------------------------------------------------------- /src/api/postRegister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postRegister.js -------------------------------------------------------------------------------- /src/api/postRequestPaymentBrane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postRequestPaymentBrane.js -------------------------------------------------------------------------------- /src/api/postRequestPaymentCardnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postRequestPaymentCardnet.js -------------------------------------------------------------------------------- /src/api/postRequestPaymentPaypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postRequestPaymentPaypal.js -------------------------------------------------------------------------------- /src/api/postRequestPaymentStripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postRequestPaymentStripe.js -------------------------------------------------------------------------------- /src/api/postResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postResetPassword.js -------------------------------------------------------------------------------- /src/api/postReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postReview.js -------------------------------------------------------------------------------- /src/api/postSendResetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postSendResetEmail.js -------------------------------------------------------------------------------- /src/api/postSubtitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postSubtitle.js -------------------------------------------------------------------------------- /src/api/postUserMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postUserMetadata.js -------------------------------------------------------------------------------- /src/api/postUserProfileImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postUserProfileImage.js -------------------------------------------------------------------------------- /src/api/postWishlistAddDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/postWishlistAddDelete.js -------------------------------------------------------------------------------- /src/api/publicCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/publicCourses.js -------------------------------------------------------------------------------- /src/api/putCompanyMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putCompanyMetadata.js -------------------------------------------------------------------------------- /src/api/putCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putCoupon.js -------------------------------------------------------------------------------- /src/api/putCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putCourse.js -------------------------------------------------------------------------------- /src/api/putInstitutionMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putInstitutionMetadata.js -------------------------------------------------------------------------------- /src/api/putLesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putLesson.js -------------------------------------------------------------------------------- /src/api/putReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putReview.js -------------------------------------------------------------------------------- /src/api/putUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putUser.js -------------------------------------------------------------------------------- /src/api/putUserMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/putUserMetadata.js -------------------------------------------------------------------------------- /src/api/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/api/settings.js -------------------------------------------------------------------------------- /src/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons.js -------------------------------------------------------------------------------- /src/assets/icons/add-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/add-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/alert-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/alert-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/apps-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/apps-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/book.svg -------------------------------------------------------------------------------- /src/assets/icons/cart-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/cart-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/cart.svg -------------------------------------------------------------------------------- /src/assets/icons/cash-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/cash-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/chatbox-ellipses-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/chatbox-ellipses-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/chatbubbles-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/chatbubbles-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/checkmark-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/checkmark-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/checkmark-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/checkmark-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/checkmark.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/chevron-forward.svg -------------------------------------------------------------------------------- /src/assets/icons/close-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/close-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/community.svg -------------------------------------------------------------------------------- /src/assets/icons/create-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/create-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/discover.svg -------------------------------------------------------------------------------- /src/assets/icons/download-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/download-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/ellipse.svg -------------------------------------------------------------------------------- /src/assets/icons/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/es.svg -------------------------------------------------------------------------------- /src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/flag.svg -------------------------------------------------------------------------------- /src/assets/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/globe.svg -------------------------------------------------------------------------------- /src/assets/icons/google-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/google-button.svg -------------------------------------------------------------------------------- /src/assets/icons/hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/hammer.svg -------------------------------------------------------------------------------- /src/assets/icons/heart-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/heart-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/help-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/help-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/help-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/help-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/id-card-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/id-card-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/image-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/image-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/key-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/key-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/link-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/link-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/lock-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/lock-closed.svg -------------------------------------------------------------------------------- /src/assets/icons/log-out-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/log-out-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-apple.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-brane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-brane.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-closed-captioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-closed-captioning.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-facebook.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-google.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-instagram.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-linkedin.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-twitter.svg -------------------------------------------------------------------------------- /src/assets/icons/logo-whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/logo-whatsapp.svg -------------------------------------------------------------------------------- /src/assets/icons/mail-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/mail-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/notifications-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/notifications-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/pause.svg -------------------------------------------------------------------------------- /src/assets/icons/people-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/people-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/people.svg -------------------------------------------------------------------------------- /src/assets/icons/person-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/person-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/person-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/person-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/person.svg -------------------------------------------------------------------------------- /src/assets/icons/play-circle-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/play-circle-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/pricetag-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/pricetag-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/school-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/school-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/search-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/search-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/send.svg -------------------------------------------------------------------------------- /src/assets/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/settings.svg -------------------------------------------------------------------------------- /src/assets/icons/share-social-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/share-social-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/star-half.svg -------------------------------------------------------------------------------- /src/assets/icons/star-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/star-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/assets/icons/stats-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/stats-chart.svg -------------------------------------------------------------------------------- /src/assets/icons/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/sync.svg -------------------------------------------------------------------------------- /src/assets/icons/trash-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/trash-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/trophy.svg -------------------------------------------------------------------------------- /src/assets/icons/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/us.svg -------------------------------------------------------------------------------- /src/assets/icons/videocam-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/videocam-outline.svg -------------------------------------------------------------------------------- /src/assets/icons/videocam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/videocam.svg -------------------------------------------------------------------------------- /src/assets/icons/volume-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/icons/volume-medium.svg -------------------------------------------------------------------------------- /src/assets/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images.js -------------------------------------------------------------------------------- /src/assets/images/Audience.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/Audience.svg -------------------------------------------------------------------------------- /src/assets/images/BG-Teach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/BG-Teach.svg -------------------------------------------------------------------------------- /src/assets/images/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/Camera.svg -------------------------------------------------------------------------------- /src/assets/images/Conferences.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/Conferences.svg -------------------------------------------------------------------------------- /src/assets/images/FAQImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/FAQImage.svg -------------------------------------------------------------------------------- /src/assets/images/Faster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/Faster.svg -------------------------------------------------------------------------------- /src/assets/images/Instructors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/Instructors.svg -------------------------------------------------------------------------------- /src/assets/images/News.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/News.svg -------------------------------------------------------------------------------- /src/assets/images/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/app-store-badge.png -------------------------------------------------------------------------------- /src/assets/images/app-store-badgeEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/app-store-badgeEN.png -------------------------------------------------------------------------------- /src/assets/images/banner-home-student.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-home-student.jpg -------------------------------------------------------------------------------- /src/assets/images/banner-home-studentEN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-home-studentEN.jpg -------------------------------------------------------------------------------- /src/assets/images/banner-landing-home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-landing-home.jpg -------------------------------------------------------------------------------- /src/assets/images/banner-small-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-small-1.svg -------------------------------------------------------------------------------- /src/assets/images/banner-small-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-small-2.svg -------------------------------------------------------------------------------- /src/assets/images/banner-small-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/banner-small-3.svg -------------------------------------------------------------------------------- /src/assets/images/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-login.jpg -------------------------------------------------------------------------------- /src/assets/images/bg-need-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-need-help.svg -------------------------------------------------------------------------------- /src/assets/images/bg-payment-fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-payment-fail.svg -------------------------------------------------------------------------------- /src/assets/images/bg-payment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-payment.svg -------------------------------------------------------------------------------- /src/assets/images/bg-profile-ins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-profile-ins.svg -------------------------------------------------------------------------------- /src/assets/images/bg-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-profile.svg -------------------------------------------------------------------------------- /src/assets/images/bg-signup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bg-signup.svg -------------------------------------------------------------------------------- /src/assets/images/bxs-book-reader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bxs-book-reader.svg -------------------------------------------------------------------------------- /src/assets/images/bxs-bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bxs-bookmarks.svg -------------------------------------------------------------------------------- /src/assets/images/bxs-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bxs-bulb.svg -------------------------------------------------------------------------------- /src/assets/images/bxs-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/bxs-video.svg -------------------------------------------------------------------------------- /src/assets/images/character-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/character-1.svg -------------------------------------------------------------------------------- /src/assets/images/character-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/character-2.svg -------------------------------------------------------------------------------- /src/assets/images/community-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/community-left.png -------------------------------------------------------------------------------- /src/assets/images/community-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/community-right.png -------------------------------------------------------------------------------- /src/assets/images/cta-institutions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/cta-institutions.svg -------------------------------------------------------------------------------- /src/assets/images/cta-vector-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/cta-vector-1.svg -------------------------------------------------------------------------------- /src/assets/images/cta-vector-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/cta-vector-2.svg -------------------------------------------------------------------------------- /src/assets/images/dots-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/dots-vertical.svg -------------------------------------------------------------------------------- /src/assets/images/dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/dots.svg -------------------------------------------------------------------------------- /src/assets/images/estudiante.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/estudiante.png -------------------------------------------------------------------------------- /src/assets/images/foreground-cta-instructor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/foreground-cta-instructor.svg -------------------------------------------------------------------------------- /src/assets/images/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/google-play-badge.png -------------------------------------------------------------------------------- /src/assets/images/google-play-badgeEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/google-play-badgeEN.png -------------------------------------------------------------------------------- /src/assets/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/grid.png -------------------------------------------------------------------------------- /src/assets/images/ins-bg-login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/ins-bg-login.svg -------------------------------------------------------------------------------- /src/assets/images/ins-bg-signup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/ins-bg-signup.svg -------------------------------------------------------------------------------- /src/assets/images/instructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/instructor.png -------------------------------------------------------------------------------- /src/assets/images/lineas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/lineas.png -------------------------------------------------------------------------------- /src/assets/images/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/logo-black.svg -------------------------------------------------------------------------------- /src/assets/images/logo-cardnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/logo-cardnet.png -------------------------------------------------------------------------------- /src/assets/images/logo-paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/logo-paypal.svg -------------------------------------------------------------------------------- /src/assets/images/logo-stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/logo-stripe.svg -------------------------------------------------------------------------------- /src/assets/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/logo-white.svg -------------------------------------------------------------------------------- /src/assets/images/quotation-marks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/quotation-marks.svg -------------------------------------------------------------------------------- /src/assets/images/recovery-account-illustration-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/recovery-account-illustration-1.svg -------------------------------------------------------------------------------- /src/assets/images/recovery-account-illustration-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/recovery-account-illustration-2.svg -------------------------------------------------------------------------------- /src/assets/images/service-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/service-1.svg -------------------------------------------------------------------------------- /src/assets/images/service-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/service-2.svg -------------------------------------------------------------------------------- /src/assets/images/service-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/service-3.svg -------------------------------------------------------------------------------- /src/assets/images/service-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/service-4.svg -------------------------------------------------------------------------------- /src/assets/images/subhero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/images/subhero.jpg -------------------------------------------------------------------------------- /src/assets/media.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/assets/media.mp4 -------------------------------------------------------------------------------- /src/components/Categories/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Categories/Categories.jsx -------------------------------------------------------------------------------- /src/components/Categories/Categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Categories/Categories.scss -------------------------------------------------------------------------------- /src/components/Chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Chat/Chat.jsx -------------------------------------------------------------------------------- /src/components/Chat/Chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Chat/Chat.scss -------------------------------------------------------------------------------- /src/components/CourseCard/CourseCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CourseCard/CourseCard.jsx -------------------------------------------------------------------------------- /src/components/CourseCard/CourseCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CourseCard/CourseCard.scss -------------------------------------------------------------------------------- /src/components/CourseCard/SpecialCourseCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CourseCard/SpecialCourseCard.jsx -------------------------------------------------------------------------------- /src/components/CustomHeaders/BusinessHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CustomHeaders/BusinessHeader.jsx -------------------------------------------------------------------------------- /src/components/CustomHeaders/CustomHeaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CustomHeaders/CustomHeaders.scss -------------------------------------------------------------------------------- /src/components/CustomHeaders/InstitutionHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CustomHeaders/InstitutionHeader.jsx -------------------------------------------------------------------------------- /src/components/CustomHeaders/InstructorHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/CustomHeaders/InstructorHeader.jsx -------------------------------------------------------------------------------- /src/components/DynamicInput/DynamicInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/DynamicInput/DynamicInput.jsx -------------------------------------------------------------------------------- /src/components/DynamicInput/DynamicInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/DynamicInput/DynamicInput.scss -------------------------------------------------------------------------------- /src/components/FancyImage/FancyImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/FancyImage/FancyImage.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Footer/Footer.scss -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Header/Header.scss -------------------------------------------------------------------------------- /src/components/HeaderDropdown/HeaderDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/HeaderDropdown/HeaderDropdown.jsx -------------------------------------------------------------------------------- /src/components/HeaderDropdown/HeaderDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/HeaderDropdown/HeaderDropdown.scss -------------------------------------------------------------------------------- /src/components/HeaderToggler/HeaderToggler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/HeaderToggler/HeaderToggler.jsx -------------------------------------------------------------------------------- /src/components/HoldingCard/HoldingCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/HoldingCard/HoldingCard.jsx -------------------------------------------------------------------------------- /src/components/HoldingCard/HoldingCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/HoldingCard/HoldingCard.scss -------------------------------------------------------------------------------- /src/components/InternalHeader/InternalHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/InternalHeader/InternalHeader.jsx -------------------------------------------------------------------------------- /src/components/InternalHeader/InternalHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/InternalHeader/InternalHeader.scss -------------------------------------------------------------------------------- /src/components/Languages/Languages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Languages/Languages.jsx -------------------------------------------------------------------------------- /src/components/Languages/Languages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Languages/Languages.scss -------------------------------------------------------------------------------- /src/components/LessonDownloader/LessonDownloader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/LessonDownloader/LessonDownloader.jsx -------------------------------------------------------------------------------- /src/components/LessonDownloader/LessonDownloader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/LessonDownloader/LessonDownloader.scss -------------------------------------------------------------------------------- /src/components/MsgDropdown/MsgDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/MsgDropdown/MsgDropdown.jsx -------------------------------------------------------------------------------- /src/components/MsgDropdown/MsgDropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/MsgDropdown/MsgDropdown.scss -------------------------------------------------------------------------------- /src/components/NavigationBars/BusinessBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/BusinessBar.jsx -------------------------------------------------------------------------------- /src/components/NavigationBars/InstitutionBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/InstitutionBar.jsx -------------------------------------------------------------------------------- /src/components/NavigationBars/InstructorBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/InstructorBar.jsx -------------------------------------------------------------------------------- /src/components/NavigationBars/NavigationBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/NavigationBar.scss -------------------------------------------------------------------------------- /src/components/NavigationBars/StudentBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/StudentBar.jsx -------------------------------------------------------------------------------- /src/components/NavigationBars/SupraContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/NavigationBars/SupraContainer.jsx -------------------------------------------------------------------------------- /src/components/Notification/Notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Notification/Notification.jsx -------------------------------------------------------------------------------- /src/components/Notification/Notification.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Notification/Notification.scss -------------------------------------------------------------------------------- /src/components/OptionsMenu/OptionsMenu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/OptionsMenu/OptionsMenu.jsx -------------------------------------------------------------------------------- /src/components/OptionsMenu/OptionsMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/OptionsMenu/OptionsMenu.scss -------------------------------------------------------------------------------- /src/components/PageTransition/PageTransition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/PageTransition/PageTransition.jsx -------------------------------------------------------------------------------- /src/components/PageTransition/PageTransition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/PageTransition/PageTransition.scss -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ProjectCard/ProjectCard.jsx -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ProjectCard/ProjectCard.scss -------------------------------------------------------------------------------- /src/components/PublicHeader/PublicHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/PublicHeader/PublicHeader.jsx -------------------------------------------------------------------------------- /src/components/PublicHeader/PublicHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/PublicHeader/PublicHeader.scss -------------------------------------------------------------------------------- /src/components/ReportModal/ReportModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ReportModal/ReportModal.jsx -------------------------------------------------------------------------------- /src/components/ReportModal/ReportModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ReportModal/ReportModal.scss -------------------------------------------------------------------------------- /src/components/ReviewModal/ReviewModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ReviewModal/ReviewModal.jsx -------------------------------------------------------------------------------- /src/components/ReviewModal/ReviewModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/ReviewModal/ReviewModal.scss -------------------------------------------------------------------------------- /src/components/SearchHeader/SearchHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/SearchHeader/SearchHeader.jsx -------------------------------------------------------------------------------- /src/components/SearchHeader/SearchHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/SearchHeader/SearchHeader.scss -------------------------------------------------------------------------------- /src/components/SpinnerOfDoom/SpinnerOfDoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/SpinnerOfDoom/SpinnerOfDoom.jsx -------------------------------------------------------------------------------- /src/components/SpinnerOfDoom/SpinnerOfDoom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/SpinnerOfDoom/SpinnerOfDoom.scss -------------------------------------------------------------------------------- /src/components/Tabulation/Tabulation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Tabulation/Tabulation.jsx -------------------------------------------------------------------------------- /src/components/VideoChat/VideoCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/VideoChat/VideoCard.jsx -------------------------------------------------------------------------------- /src/components/VideoChat/VideoChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/VideoChat/VideoChat.jsx -------------------------------------------------------------------------------- /src/components/VideoChat/VideoChat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/VideoChat/VideoChat.scss -------------------------------------------------------------------------------- /src/components/Wishlist/Wishlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Wishlist/Wishlist.jsx -------------------------------------------------------------------------------- /src/components/Wishlist/Wishlist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/Wishlist/Wishlist.scss -------------------------------------------------------------------------------- /src/components/WishlistModal/WishlistModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/WishlistModal/WishlistModal.jsx -------------------------------------------------------------------------------- /src/components/WishlistModal/WishlistModal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/components/WishlistModal/WishlistModal.scss -------------------------------------------------------------------------------- /src/contexts/CartContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/CartContext.js -------------------------------------------------------------------------------- /src/contexts/CartProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/CartProvider.jsx -------------------------------------------------------------------------------- /src/contexts/CategoriesContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/CategoriesContext.js -------------------------------------------------------------------------------- /src/contexts/CategoriesProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/CategoriesProvider.jsx -------------------------------------------------------------------------------- /src/contexts/DictionaryContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/DictionaryContext.js -------------------------------------------------------------------------------- /src/contexts/DictionaryProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/DictionaryProvider.jsx -------------------------------------------------------------------------------- /src/contexts/ReportModalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/ReportModalContext.js -------------------------------------------------------------------------------- /src/contexts/ReportModalProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/ReportModalProvider.jsx -------------------------------------------------------------------------------- /src/contexts/ReviewModalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/ReviewModalContext.js -------------------------------------------------------------------------------- /src/contexts/ReviewModalProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/ReviewModalProvider.jsx -------------------------------------------------------------------------------- /src/contexts/UserDataContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/UserDataContext.js -------------------------------------------------------------------------------- /src/contexts/UserDataProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/UserDataProvider.jsx -------------------------------------------------------------------------------- /src/contexts/WishlistModalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/WishlistModalContext.js -------------------------------------------------------------------------------- /src/contexts/WishlistModalProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/contexts/WishlistModalProvider.jsx -------------------------------------------------------------------------------- /src/helpers/ScrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/ScrollToTop.jsx -------------------------------------------------------------------------------- /src/helpers/calculateAge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/calculateAge.js -------------------------------------------------------------------------------- /src/helpers/disableReactDevTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/disableReactDevTools.js -------------------------------------------------------------------------------- /src/helpers/getImageLinkFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/getImageLinkFrom.js -------------------------------------------------------------------------------- /src/helpers/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/localStorage.js -------------------------------------------------------------------------------- /src/helpers/palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/palette.js -------------------------------------------------------------------------------- /src/helpers/shareCurrentPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/helpers/shareCurrentPage.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/pages/Private/Business/AddUsers/AddUsers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/AddUsers/AddUsers.jsx -------------------------------------------------------------------------------- /src/pages/Private/Business/AddUsers/AddUsers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/AddUsers/AddUsers.scss -------------------------------------------------------------------------------- /src/pages/Private/Business/FAQ/FAQDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/FAQ/FAQDropdown.jsx -------------------------------------------------------------------------------- /src/pages/Private/Business/FAQ/FAQPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/FAQ/FAQPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Business/FAQ/FAQPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/FAQ/FAQPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Business/StatisticsPage/StatisticsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/StatisticsPage/StatisticsPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Business/StatisticsPage/StatisticsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Business/StatisticsPage/StatisticsPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Institutions/HomeInstitutions/HomeInstitutions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Institutions/HomeInstitutions/HomeInstitutions.jsx -------------------------------------------------------------------------------- /src/pages/Private/Institutions/HomeInstitutions/HomeInstitutions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Institutions/HomeInstitutions/HomeInstitutions.scss -------------------------------------------------------------------------------- /src/pages/Private/Institutions/ManageInstructors/ManageInstructors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Institutions/ManageInstructors/ManageInstructors.jsx -------------------------------------------------------------------------------- /src/pages/Private/Institutions/ManageInstructors/ManageInstructors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Institutions/ManageInstructors/ManageInstructors.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateConference/CreateConferenceInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateConference/CreateConferenceInfo.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateConference/CreateConferencePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateConference/CreateConferencePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCoupons/CreateCoupons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCoupons/CreateCoupons.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCoupons/CreateCoupons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCoupons/CreateCoupons.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/AddLessons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/AddLessons.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/CreateCourseInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/CreateCourseInfo.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/CreateCoursePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/CreateCoursePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/CreateCoursePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/CreateCoursePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/InstructorCourseInfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/InstructorCourseInfo.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/InstructorCourseLessons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/InstructorCourseLessons.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/CreateCourse/ListItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/CreateCourse/ListItem.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/EditCoursePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/EditCoursePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/EditCoursePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/EditCoursePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/LessonAggregator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/LessonAggregator.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/LinkItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/LinkItem.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/SingleLesson.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/SingleLesson.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/TabCourse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/TabCourse.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/EditCourse/TabLessons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/EditCourse/TabLessons.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/HomeInstructor/HomeInstructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/HomeInstructor/HomeInstructor.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/HomeInstructor/HomeInstructor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/HomeInstructor/HomeInstructor.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/Messages/Comments/Comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/Messages/Comments/Comments.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/Messages/Comments/Comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/Messages/Comments/Comments.scss -------------------------------------------------------------------------------- /src/pages/Private/Instructor/Messages/Messages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/Messages/Messages.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/PaymentMethods/PaymentMethods.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/PaymentMethods/PaymentMethods.jsx -------------------------------------------------------------------------------- /src/pages/Private/Instructor/PaymentMethods/PaymentMethods.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Instructor/PaymentMethods/PaymentMethods.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/AdvancedSearchPage/AdvancedSearchPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/AdvancedSearchPage/AdvancedSearchPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/AdvancedSearchPage/AdvancedSearchPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/AdvancedSearchPage/AdvancedSearchPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/CartPage/CartPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/CartPage/CartPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/CartPage/CartPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/CartPage/CartPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/Chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/Chat/Chat.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/Chat/Chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/Chat/Chat.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/Chat/ChatPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/Chat/ChatPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/CoursePage/CoursePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/CoursePage/CoursePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/CoursePage/CoursePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/CoursePage/CoursePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/DiscoverPage/Carousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/DiscoverPage/Carousel.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/DiscoverPage/DiscoverPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/DiscoverPage/DiscoverPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/DiscoverPage/DiscoverPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/DiscoverPage/DiscoverPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/EditProfilePage/EditProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/EditProfilePage/EditProfilePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/EditProfilePage/EditProfilePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/EditProfilePage/EditProfilePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/MyCoursesPage/DownloadManager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/MyCoursesPage/DownloadManager.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/MyCoursesPage/MyCoursesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/MyCoursesPage/MyCoursesPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/MyCoursesPage/MyCoursesPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/MyCoursesPage/MyCoursesPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/NotificationsPage/NotificationsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/NotificationsPage/NotificationsPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/NotificationsPage/NotificationsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/NotificationsPage/NotificationsPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/BusinessProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/BusinessProfile.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/InstitutionProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/InstitutionProfile.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/InstructorProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/InstructorProfile.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/Little.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/Little.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/StudentProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/StudentProfile.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/UserProfilePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/UserProfilePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Shared/UserProfilePage/UserProfilePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/UserProfilePage/UserProfilePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/VideoConferencePage/VideoConferencePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/VideoConferencePage/VideoConferencePage.scss -------------------------------------------------------------------------------- /src/pages/Private/Shared/VideoConferencePage/VideoConferenceRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Shared/VideoConferencePage/VideoConferenceRoom.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/ConferencePage/Close.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/ConferencePage/Close.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/ConferencePage/ConferencePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/ConferencePage/ConferencePage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/ConferencePage/Meeting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/ConferencePage/Meeting.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/LearnPage/LearnPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/LearnPage/LearnPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/LearnPage/LearnPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/LearnPage/LearnPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Student/LessonPage/LessonPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/LessonPage/LessonPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/LessonPage/LessonPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/LessonPage/LessonPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Student/PostPayment/PaymentFailure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/PostPayment/PaymentFailure.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/PostPayment/SuccessfulPurchase.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/PostPayment/SuccessfulPurchase.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/RoleSelection/RoleSelection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/RoleSelection/RoleSelection.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/RoleSelection/RoleSelection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/RoleSelection/RoleSelection.scss -------------------------------------------------------------------------------- /src/pages/Private/Student/SearchPage/SearchPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/SearchPage/SearchPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/SearchPage/SearchPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/SearchPage/SearchPage.scss -------------------------------------------------------------------------------- /src/pages/Private/Student/WishlistPage/Wish.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/WishlistPage/Wish.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/WishlistPage/Wish.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/WishlistPage/Wish.scss -------------------------------------------------------------------------------- /src/pages/Private/Student/WishlistPage/WishlistPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/WishlistPage/WishlistPage.jsx -------------------------------------------------------------------------------- /src/pages/Private/Student/WishlistPage/WishlistPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Private/Student/WishlistPage/WishlistPage.scss -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/AccountRecoveryBox/AccountRecoveryBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/AccountRecoveryBox/AccountRecoveryBox.jsx -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/AccountRecoveryBox/AccountRecoveryBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/AccountRecoveryBox/AccountRecoveryBox.scss -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/AuthPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/AuthPage.jsx -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/AuthPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/AuthPage.scss -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/InsSignupBox/InsSignupBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/InsSignupBox/InsSignupBox.jsx -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/InsSignupBox/InsSignupBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/InsSignupBox/InsSignupBox.scss -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/LoginBox/LoginBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/LoginBox/LoginBox.jsx -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/LoginBox/LoginBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/LoginBox/LoginBox.scss -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/SignupBox/SignupBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/SignupBox/SignupBox.jsx -------------------------------------------------------------------------------- /src/pages/Public/AuthPage/SignupBox/SignupBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/AuthPage/SignupBox/SignupBox.scss -------------------------------------------------------------------------------- /src/pages/Public/Blog/Article.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Blog/Article.jsx -------------------------------------------------------------------------------- /src/pages/Public/Blog/BlogCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Blog/BlogCard.jsx -------------------------------------------------------------------------------- /src/pages/Public/Blog/BlogPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Blog/BlogPage.jsx -------------------------------------------------------------------------------- /src/pages/Public/Blog/BlogPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Blog/BlogPage.scss -------------------------------------------------------------------------------- /src/pages/Public/Blog/HelpCenter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Blog/HelpCenter.jsx -------------------------------------------------------------------------------- /src/pages/Public/BusinessPage/BusinessPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/BusinessPage/BusinessPage.jsx -------------------------------------------------------------------------------- /src/pages/Public/BusinessPage/BusinessPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/BusinessPage/BusinessPage.scss -------------------------------------------------------------------------------- /src/pages/Public/Contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Contact/Contact.jsx -------------------------------------------------------------------------------- /src/pages/Public/Contact/Contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/Contact/Contact.scss -------------------------------------------------------------------------------- /src/pages/Public/InstitutionsPage/InstitutionsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/InstitutionsPage/InstitutionsPage.jsx -------------------------------------------------------------------------------- /src/pages/Public/InstitutionsPage/InstitutionsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/InstitutionsPage/InstitutionsPage.scss -------------------------------------------------------------------------------- /src/pages/Public/LandingPageHome/LandingPageHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/LandingPageHome/LandingPageHome.jsx -------------------------------------------------------------------------------- /src/pages/Public/LandingPageHome/LandingPageHome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/LandingPageHome/LandingPageHome.scss -------------------------------------------------------------------------------- /src/pages/Public/PolicyTerms/Policy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/PolicyTerms/Policy.jsx -------------------------------------------------------------------------------- /src/pages/Public/PolicyTerms/PolicyTerms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/PolicyTerms/PolicyTerms.scss -------------------------------------------------------------------------------- /src/pages/Public/PolicyTerms/Terms.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/PolicyTerms/Terms.jsx -------------------------------------------------------------------------------- /src/pages/Public/TeachPage/TeachPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/TeachPage/TeachPage.jsx -------------------------------------------------------------------------------- /src/pages/Public/TeachPage/TeachPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/pages/Public/TeachPage/TeachPage.scss -------------------------------------------------------------------------------- /src/router/AppRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/router/AppRouter.jsx -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sm4rtdev/Brane_frontend/HEAD/yarn.lock --------------------------------------------------------------------------------