├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── favicon.png ├── index.html ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── CourseData ├── MOCK_DATA.json ├── courseData.js ├── recoData.js └── short.js ├── Images ├── BuidYouAdudience.jpg ├── EngagingCourse.jpg ├── NewInstructorChallenge.jpg ├── cpp.jpg ├── getStartedWithVideo.jpg ├── htmlcss.jpg ├── instsecond.jpg ├── introprogramming.jpg ├── java.png ├── javascript.jpg ├── javascript2.png ├── laptoattable.jpg ├── laptop.jpg ├── mohsin.jpg ├── pcBoy.jpg ├── python30.jpg ├── reactjs.png ├── salman.jpeg ├── shahzaibFrontened.png └── webdev.jpg ├── components ├── AdminComponents │ ├── AllCourses │ │ ├── CoursesTable.js │ │ └── columns.js │ ├── AllUsers │ │ ├── GlobalFilter.js │ │ ├── UsersTable.js │ │ └── columns.js │ ├── MainAnalytics │ │ ├── AdminBarChart.js │ │ ├── AdminCharts.js │ │ ├── AdminDoughnutChart.js │ │ ├── AdminReviews.js │ │ └── TopCards.js │ ├── Sidebar.js │ ├── SingleCourse │ │ ├── BarChart.js │ │ ├── LineChart.js │ │ ├── SingleCourseAbout.js │ │ ├── SingleCourseCharts.js │ │ ├── SingleCourseEnrolledStudents.js │ │ ├── SingleCourseReviews.js │ │ └── SingleCourseTopCards.js │ └── SingleUser │ │ └── SingleUser.js ├── AuthComponents │ ├── FormComponent.js │ └── UserProfileDropdown.js ├── ContactUs │ ├── Mohsin.js │ ├── Salman.js │ └── Shahzaib.js ├── CoursePlayer │ ├── CommentRatings.js │ ├── CourseContentShow.js │ ├── CourseVideoPlayer.js │ └── PlayCourseDetail.js ├── HomeComponents │ ├── BecomeInstructor.js │ ├── DisplayCardView.js │ ├── HomeCarousel.js │ ├── HomeVideo.js │ ├── ImageCarousel.js │ ├── Recommended.js │ └── ShortSkills.js ├── ProfileComponents │ ├── EnrolledCourses.js │ ├── PasswordUpdate.js │ ├── ProfilePhotoUpdate.js │ └── UserProfile.js ├── SharedComponents │ ├── Avatar.js │ ├── BackButton.js │ ├── Footer.js │ ├── Loader.js │ ├── Navigationbar.js │ ├── NofFound.js │ ├── Rating.js │ ├── SmallLoader.js │ └── TextEditor.js └── instructor │ ├── InstNewCourseForm.js │ ├── InstructorAnalyticsComponents │ ├── BarChart.js │ ├── DoughnutChart.js │ ├── InstructorAnalyticsCharts.js │ ├── InstructorAnalyticsReviews.js │ └── InstructorAnalyticsTopCards.js │ ├── InstructorCourses │ ├── InstCoursesMainPage.js │ ├── InstCoursesTable.js │ └── InstructorSectionEdit.js │ ├── InstructorGuideCards.js │ ├── InstructorLectures │ ├── InstSecLecture.js │ └── InstSecLectureTable.js │ ├── InstructorMainPage.js │ ├── InstructorOffCanvas.js │ ├── InstructorSections │ ├── InstCourseSection.js │ └── InstCourseSectionTable.js │ └── instructorGuidDetails │ ├── BuildYourAudience.js │ ├── CreateIntriGungCourse.js │ ├── GetStartedWithVideo.js │ └── InstructorChallenge.js ├── index.css ├── index.js ├── pages ├── AboutUs │ └── AboutUs.js ├── AdminPanel │ ├── AdminPanelCourses.js │ ├── AdminPanelMain.js │ ├── AdminPanelSingleCourse.js │ ├── AdminPanelSingleUser.js │ └── AdminPanelUsers.js ├── Auth │ ├── ForgotPassword.js │ ├── Login.js │ ├── Register.js │ └── ResetPassword.js ├── Home │ └── Home.js ├── InstructorAnalytics │ └── InstructorAnalyticsMain.js ├── Payment │ └── PaymentSuccess.js ├── Profile │ ├── EditPassword.js │ ├── EditProfile.js │ ├── EditProfilePhoto.js │ └── UserEnrolledCourses.js ├── cart │ └── Cart.js ├── contactUs │ └── ContactUs.js ├── courseDetail │ ├── BasicCourseDetail.js │ ├── CourseContent.js │ ├── Description.js │ ├── InstructorAbout.js │ ├── SelectedCourseDetail.js │ └── UserReviews.js ├── courseSearch │ ├── CategoryFilter.js │ ├── PaginationComponent.js │ ├── PriceFilter.js │ ├── SearchByFilter.js │ ├── SearchedCourses.js │ └── StarFilter.js └── enrolledPage │ └── EnrolledCoursePlayer.js ├── redux ├── reducers │ ├── admin │ │ ├── adminServices.js │ │ └── adminSlice.js │ ├── auth │ │ ├── authServices.js │ │ └── authSlice.js │ ├── cart │ │ ├── cartServices.js │ │ └── cartSlice.js │ ├── courseLectures │ │ ├── courseLecturesServices.js │ │ └── courseLecturesSlice.js │ ├── courseReviews │ │ ├── courseReviewsServices.js │ │ └── courseReviewsSlice.js │ ├── courseSections │ │ ├── courseSectionsServices.js │ │ └── courseSectionsSlice.js │ ├── instructor │ │ ├── instructorServices.js │ │ └── instructorSlice.js │ ├── user │ │ ├── userServices.js │ │ └── userSlice.js │ └── userSideCourses │ │ ├── userSideCoursesServices.js │ │ └── userSideCoursesSlice.js └── store.js ├── styles └── bootstrap.min.css └── video ├── dil.mp4 ├── intro.mp4 ├── introduction.mp4 └── soniye.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/CourseData/MOCK_DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/CourseData/MOCK_DATA.json -------------------------------------------------------------------------------- /src/CourseData/courseData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/CourseData/courseData.js -------------------------------------------------------------------------------- /src/CourseData/recoData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/CourseData/recoData.js -------------------------------------------------------------------------------- /src/CourseData/short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/CourseData/short.js -------------------------------------------------------------------------------- /src/Images/BuidYouAdudience.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/BuidYouAdudience.jpg -------------------------------------------------------------------------------- /src/Images/EngagingCourse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/EngagingCourse.jpg -------------------------------------------------------------------------------- /src/Images/NewInstructorChallenge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/NewInstructorChallenge.jpg -------------------------------------------------------------------------------- /src/Images/cpp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/cpp.jpg -------------------------------------------------------------------------------- /src/Images/getStartedWithVideo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/getStartedWithVideo.jpg -------------------------------------------------------------------------------- /src/Images/htmlcss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/htmlcss.jpg -------------------------------------------------------------------------------- /src/Images/instsecond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/instsecond.jpg -------------------------------------------------------------------------------- /src/Images/introprogramming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/introprogramming.jpg -------------------------------------------------------------------------------- /src/Images/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/java.png -------------------------------------------------------------------------------- /src/Images/javascript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/javascript.jpg -------------------------------------------------------------------------------- /src/Images/javascript2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/javascript2.png -------------------------------------------------------------------------------- /src/Images/laptoattable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/laptoattable.jpg -------------------------------------------------------------------------------- /src/Images/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/laptop.jpg -------------------------------------------------------------------------------- /src/Images/mohsin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/mohsin.jpg -------------------------------------------------------------------------------- /src/Images/pcBoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/pcBoy.jpg -------------------------------------------------------------------------------- /src/Images/python30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/python30.jpg -------------------------------------------------------------------------------- /src/Images/reactjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/reactjs.png -------------------------------------------------------------------------------- /src/Images/salman.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/salman.jpeg -------------------------------------------------------------------------------- /src/Images/shahzaibFrontened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/shahzaibFrontened.png -------------------------------------------------------------------------------- /src/Images/webdev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/Images/webdev.jpg -------------------------------------------------------------------------------- /src/components/AdminComponents/AllCourses/CoursesTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/AllCourses/CoursesTable.js -------------------------------------------------------------------------------- /src/components/AdminComponents/AllCourses/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/AllCourses/columns.js -------------------------------------------------------------------------------- /src/components/AdminComponents/AllUsers/GlobalFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/AllUsers/GlobalFilter.js -------------------------------------------------------------------------------- /src/components/AdminComponents/AllUsers/UsersTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/AllUsers/UsersTable.js -------------------------------------------------------------------------------- /src/components/AdminComponents/AllUsers/columns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/AllUsers/columns.js -------------------------------------------------------------------------------- /src/components/AdminComponents/MainAnalytics/AdminBarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/MainAnalytics/AdminBarChart.js -------------------------------------------------------------------------------- /src/components/AdminComponents/MainAnalytics/AdminCharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/MainAnalytics/AdminCharts.js -------------------------------------------------------------------------------- /src/components/AdminComponents/MainAnalytics/AdminDoughnutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/MainAnalytics/AdminDoughnutChart.js -------------------------------------------------------------------------------- /src/components/AdminComponents/MainAnalytics/AdminReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/MainAnalytics/AdminReviews.js -------------------------------------------------------------------------------- /src/components/AdminComponents/MainAnalytics/TopCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/MainAnalytics/TopCards.js -------------------------------------------------------------------------------- /src/components/AdminComponents/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/Sidebar.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/BarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/BarChart.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/LineChart.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/SingleCourseAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/SingleCourseAbout.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/SingleCourseCharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/SingleCourseCharts.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/SingleCourseEnrolledStudents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/SingleCourseEnrolledStudents.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/SingleCourseReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/SingleCourseReviews.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleCourse/SingleCourseTopCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleCourse/SingleCourseTopCards.js -------------------------------------------------------------------------------- /src/components/AdminComponents/SingleUser/SingleUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AdminComponents/SingleUser/SingleUser.js -------------------------------------------------------------------------------- /src/components/AuthComponents/FormComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AuthComponents/FormComponent.js -------------------------------------------------------------------------------- /src/components/AuthComponents/UserProfileDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/AuthComponents/UserProfileDropdown.js -------------------------------------------------------------------------------- /src/components/ContactUs/Mohsin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ContactUs/Mohsin.js -------------------------------------------------------------------------------- /src/components/ContactUs/Salman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ContactUs/Salman.js -------------------------------------------------------------------------------- /src/components/ContactUs/Shahzaib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ContactUs/Shahzaib.js -------------------------------------------------------------------------------- /src/components/CoursePlayer/CommentRatings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/CoursePlayer/CommentRatings.js -------------------------------------------------------------------------------- /src/components/CoursePlayer/CourseContentShow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/CoursePlayer/CourseContentShow.js -------------------------------------------------------------------------------- /src/components/CoursePlayer/CourseVideoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/CoursePlayer/CourseVideoPlayer.js -------------------------------------------------------------------------------- /src/components/CoursePlayer/PlayCourseDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/CoursePlayer/PlayCourseDetail.js -------------------------------------------------------------------------------- /src/components/HomeComponents/BecomeInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/BecomeInstructor.js -------------------------------------------------------------------------------- /src/components/HomeComponents/DisplayCardView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/DisplayCardView.js -------------------------------------------------------------------------------- /src/components/HomeComponents/HomeCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/HomeCarousel.js -------------------------------------------------------------------------------- /src/components/HomeComponents/HomeVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/HomeVideo.js -------------------------------------------------------------------------------- /src/components/HomeComponents/ImageCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/ImageCarousel.js -------------------------------------------------------------------------------- /src/components/HomeComponents/Recommended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/Recommended.js -------------------------------------------------------------------------------- /src/components/HomeComponents/ShortSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/HomeComponents/ShortSkills.js -------------------------------------------------------------------------------- /src/components/ProfileComponents/EnrolledCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ProfileComponents/EnrolledCourses.js -------------------------------------------------------------------------------- /src/components/ProfileComponents/PasswordUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ProfileComponents/PasswordUpdate.js -------------------------------------------------------------------------------- /src/components/ProfileComponents/ProfilePhotoUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ProfileComponents/ProfilePhotoUpdate.js -------------------------------------------------------------------------------- /src/components/ProfileComponents/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/ProfileComponents/UserProfile.js -------------------------------------------------------------------------------- /src/components/SharedComponents/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/Avatar.js -------------------------------------------------------------------------------- /src/components/SharedComponents/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/BackButton.js -------------------------------------------------------------------------------- /src/components/SharedComponents/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/Footer.js -------------------------------------------------------------------------------- /src/components/SharedComponents/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/Loader.js -------------------------------------------------------------------------------- /src/components/SharedComponents/Navigationbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/Navigationbar.js -------------------------------------------------------------------------------- /src/components/SharedComponents/NofFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/NofFound.js -------------------------------------------------------------------------------- /src/components/SharedComponents/Rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/Rating.js -------------------------------------------------------------------------------- /src/components/SharedComponents/SmallLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/SmallLoader.js -------------------------------------------------------------------------------- /src/components/SharedComponents/TextEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/SharedComponents/TextEditor.js -------------------------------------------------------------------------------- /src/components/instructor/InstNewCourseForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstNewCourseForm.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorAnalyticsComponents/BarChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorAnalyticsComponents/BarChart.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorAnalyticsComponents/DoughnutChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorAnalyticsComponents/DoughnutChart.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsCharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsCharts.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsReviews.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsTopCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorAnalyticsComponents/InstructorAnalyticsTopCards.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorCourses/InstCoursesMainPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorCourses/InstCoursesMainPage.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorCourses/InstCoursesTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorCourses/InstCoursesTable.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorCourses/InstructorSectionEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorCourses/InstructorSectionEdit.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorGuideCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorGuideCards.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorLectures/InstSecLecture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorLectures/InstSecLecture.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorLectures/InstSecLectureTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorLectures/InstSecLectureTable.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorMainPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorMainPage.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorOffCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorOffCanvas.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorSections/InstCourseSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorSections/InstCourseSection.js -------------------------------------------------------------------------------- /src/components/instructor/InstructorSections/InstCourseSectionTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/InstructorSections/InstCourseSectionTable.js -------------------------------------------------------------------------------- /src/components/instructor/instructorGuidDetails/BuildYourAudience.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/instructorGuidDetails/BuildYourAudience.js -------------------------------------------------------------------------------- /src/components/instructor/instructorGuidDetails/CreateIntriGungCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/instructorGuidDetails/CreateIntriGungCourse.js -------------------------------------------------------------------------------- /src/components/instructor/instructorGuidDetails/GetStartedWithVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/instructorGuidDetails/GetStartedWithVideo.js -------------------------------------------------------------------------------- /src/components/instructor/instructorGuidDetails/InstructorChallenge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/components/instructor/instructorGuidDetails/InstructorChallenge.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AboutUs/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AboutUs/AboutUs.js -------------------------------------------------------------------------------- /src/pages/AdminPanel/AdminPanelCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AdminPanel/AdminPanelCourses.js -------------------------------------------------------------------------------- /src/pages/AdminPanel/AdminPanelMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AdminPanel/AdminPanelMain.js -------------------------------------------------------------------------------- /src/pages/AdminPanel/AdminPanelSingleCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AdminPanel/AdminPanelSingleCourse.js -------------------------------------------------------------------------------- /src/pages/AdminPanel/AdminPanelSingleUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AdminPanel/AdminPanelSingleUser.js -------------------------------------------------------------------------------- /src/pages/AdminPanel/AdminPanelUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/AdminPanel/AdminPanelUsers.js -------------------------------------------------------------------------------- /src/pages/Auth/ForgotPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Auth/ForgotPassword.js -------------------------------------------------------------------------------- /src/pages/Auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Auth/Login.js -------------------------------------------------------------------------------- /src/pages/Auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Auth/Register.js -------------------------------------------------------------------------------- /src/pages/Auth/ResetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Auth/ResetPassword.js -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/InstructorAnalytics/InstructorAnalyticsMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/InstructorAnalytics/InstructorAnalyticsMain.js -------------------------------------------------------------------------------- /src/pages/Payment/PaymentSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Payment/PaymentSuccess.js -------------------------------------------------------------------------------- /src/pages/Profile/EditPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Profile/EditPassword.js -------------------------------------------------------------------------------- /src/pages/Profile/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Profile/EditProfile.js -------------------------------------------------------------------------------- /src/pages/Profile/EditProfilePhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Profile/EditProfilePhoto.js -------------------------------------------------------------------------------- /src/pages/Profile/UserEnrolledCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/Profile/UserEnrolledCourses.js -------------------------------------------------------------------------------- /src/pages/cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/cart/Cart.js -------------------------------------------------------------------------------- /src/pages/contactUs/ContactUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/contactUs/ContactUs.js -------------------------------------------------------------------------------- /src/pages/courseDetail/BasicCourseDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/BasicCourseDetail.js -------------------------------------------------------------------------------- /src/pages/courseDetail/CourseContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/CourseContent.js -------------------------------------------------------------------------------- /src/pages/courseDetail/Description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/Description.js -------------------------------------------------------------------------------- /src/pages/courseDetail/InstructorAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/InstructorAbout.js -------------------------------------------------------------------------------- /src/pages/courseDetail/SelectedCourseDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/SelectedCourseDetail.js -------------------------------------------------------------------------------- /src/pages/courseDetail/UserReviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseDetail/UserReviews.js -------------------------------------------------------------------------------- /src/pages/courseSearch/CategoryFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/CategoryFilter.js -------------------------------------------------------------------------------- /src/pages/courseSearch/PaginationComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/PaginationComponent.js -------------------------------------------------------------------------------- /src/pages/courseSearch/PriceFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/PriceFilter.js -------------------------------------------------------------------------------- /src/pages/courseSearch/SearchByFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/SearchByFilter.js -------------------------------------------------------------------------------- /src/pages/courseSearch/SearchedCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/SearchedCourses.js -------------------------------------------------------------------------------- /src/pages/courseSearch/StarFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/courseSearch/StarFilter.js -------------------------------------------------------------------------------- /src/pages/enrolledPage/EnrolledCoursePlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/pages/enrolledPage/EnrolledCoursePlayer.js -------------------------------------------------------------------------------- /src/redux/reducers/admin/adminServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/admin/adminServices.js -------------------------------------------------------------------------------- /src/redux/reducers/admin/adminSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/admin/adminSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/auth/authServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/auth/authServices.js -------------------------------------------------------------------------------- /src/redux/reducers/auth/authSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/auth/authSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/cart/cartServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/cart/cartServices.js -------------------------------------------------------------------------------- /src/redux/reducers/cart/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/cart/cartSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/courseLectures/courseLecturesServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseLectures/courseLecturesServices.js -------------------------------------------------------------------------------- /src/redux/reducers/courseLectures/courseLecturesSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseLectures/courseLecturesSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/courseReviews/courseReviewsServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseReviews/courseReviewsServices.js -------------------------------------------------------------------------------- /src/redux/reducers/courseReviews/courseReviewsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseReviews/courseReviewsSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/courseSections/courseSectionsServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseSections/courseSectionsServices.js -------------------------------------------------------------------------------- /src/redux/reducers/courseSections/courseSectionsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/courseSections/courseSectionsSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/instructor/instructorServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/instructor/instructorServices.js -------------------------------------------------------------------------------- /src/redux/reducers/instructor/instructorSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/instructor/instructorSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/user/userServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/user/userServices.js -------------------------------------------------------------------------------- /src/redux/reducers/user/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/user/userSlice.js -------------------------------------------------------------------------------- /src/redux/reducers/userSideCourses/userSideCoursesServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/userSideCourses/userSideCoursesServices.js -------------------------------------------------------------------------------- /src/redux/reducers/userSideCourses/userSideCoursesSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/reducers/userSideCourses/userSideCoursesSlice.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/styles/bootstrap.min.css -------------------------------------------------------------------------------- /src/video/dil.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/video/dil.mp4 -------------------------------------------------------------------------------- /src/video/intro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/video/intro.mp4 -------------------------------------------------------------------------------- /src/video/introduction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/video/introduction.mp4 -------------------------------------------------------------------------------- /src/video/soniye.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohsinchd/Learnica-Frontend/HEAD/src/video/soniye.mp4 --------------------------------------------------------------------------------