├── .gitignore ├── README.md ├── amplify ├── #current-cloud-backend │ ├── amplify-meta.json │ ├── auth │ │ └── eduwise69bc7994 │ │ │ ├── build │ │ │ ├── eduwise69bc7994-cloudformation-template.json │ │ │ └── parameters.json │ │ │ └── cli-inputs.json │ ├── awscloudformation │ │ └── build │ │ │ ├── auth │ │ │ └── eduwise69bc7994 │ │ │ │ └── build │ │ │ │ └── eduwise69bc7994-cloudformation-template.json │ │ │ ├── awscloudformation │ │ │ └── build │ │ │ │ └── root-cloudformation-stack.json │ │ │ ├── function │ │ │ └── S3Trigger61fc6c93 │ │ │ │ └── S3Trigger61fc6c93-cloudformation-template.json │ │ │ ├── root-cloudformation-stack.json │ │ │ └── storage │ │ │ └── eduwiseStorage │ │ │ └── build │ │ │ └── cloudformation-template.json │ ├── backend-config.json │ ├── function │ │ └── S3Trigger61fc6c93 │ │ │ ├── S3Trigger61fc6c93-cloudformation-template.json │ │ │ ├── amplify.state │ │ │ └── src │ │ │ ├── event.json │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ ├── storage │ │ └── eduwiseStorage │ │ │ ├── build │ │ │ ├── cloudformation-template.json │ │ │ └── parameters.json │ │ │ └── cli-inputs.json │ └── tags.json ├── .config │ ├── local-aws-info.json │ ├── local-env-info.json │ └── project-config.json ├── README.md ├── backend │ ├── amplify-meta.json │ ├── auth │ │ └── eduwise69bc7994 │ │ │ ├── build │ │ │ ├── eduwise69bc7994-cloudformation-template.json │ │ │ └── parameters.json │ │ │ └── cli-inputs.json │ ├── awscloudformation │ │ └── build │ │ │ ├── auth │ │ │ └── eduwise69bc7994 │ │ │ │ └── build │ │ │ │ └── eduwise69bc7994-cloudformation-template.json │ │ │ ├── awscloudformation │ │ │ └── build │ │ │ │ └── root-cloudformation-stack.json │ │ │ ├── function │ │ │ └── S3Trigger61fc6c93 │ │ │ │ └── S3Trigger61fc6c93-cloudformation-template.json │ │ │ ├── root-cloudformation-stack.json │ │ │ └── storage │ │ │ └── eduwiseStorage │ │ │ └── build │ │ │ └── cloudformation-template.json │ ├── backend-config.json │ ├── function │ │ └── S3Trigger61fc6c93 │ │ │ ├── S3Trigger61fc6c93-cloudformation-template.json │ │ │ ├── amplify.state │ │ │ └── src │ │ │ ├── event.json │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── yarn.lock │ ├── storage │ │ └── eduwiseStorage │ │ │ ├── build │ │ │ ├── cloudformation-template.json │ │ │ └── parameters.json │ │ │ └── cli-inputs.json │ ├── tags.json │ └── types │ │ └── amplify-dependent-resources-ref.d.ts ├── cli.json ├── hooks │ ├── README.md │ ├── post-push.sh.sample │ └── pre-push.js.sample └── team-provider-info.json ├── config.js ├── eslint.config.js ├── index.html ├── package.json ├── public ├── icons │ ├── Facebook.png │ ├── Linkedin.png │ ├── Twitter.png │ ├── Youtube.png │ ├── address.png │ ├── book_filled.png │ ├── call.png │ ├── community.png │ ├── course_degree.png │ ├── courses_filled.png │ ├── dashboard.png │ ├── globe.png │ ├── history.png │ ├── mail.png │ ├── message.png │ ├── mind.png │ ├── money.png │ ├── nextIcon.png │ ├── note.png │ ├── notification.png │ ├── star.png │ ├── tick_filled.png │ ├── users.png │ └── video.png ├── images │ ├── PF_img_main.png │ ├── become-instructor.png │ ├── become-student.png │ ├── book-icon.png │ ├── bulb.png │ ├── category_1.png │ ├── category_10.png │ ├── category_11.png │ ├── category_12.png │ ├── category_2.png │ ├── category_3.png │ ├── category_4.png │ ├── category_5.png │ ├── category_6.png │ ├── category_7.png │ ├── category_8.png │ ├── category_9.png │ ├── certificate_dummy.jpg │ ├── charge-img.png │ ├── contact_bg.jpg │ ├── contactus_bg.jpg │ ├── course_thumbail_1.png │ ├── course_thumbail_2.png │ ├── course_thumbail_3.png │ ├── course_thumbail_4.png │ ├── course_thumbail_5.png │ ├── course_thumbail_6.png │ ├── course_thumbail_7.png │ ├── course_thumbail_8.png │ ├── courses.png │ ├── courses_hero_bg.png │ ├── dummy_certificate.jpg │ ├── graph.png │ ├── help_img.png │ ├── hero-bg.png │ ├── instructor_bg.png │ ├── logo.png │ ├── make_special_img_1.png │ ├── make_special_img_2.png │ ├── make_special_img_3.png │ ├── not_found_image.png │ ├── notes.png │ ├── otp_img.png │ ├── profileImg.png │ ├── side_bar_card.png │ ├── side_img.png │ ├── sign_in_img.png │ ├── sign_up_img.png │ ├── smart-learn-logo.png │ ├── statsOverviewBG.png │ ├── tab_img_1.png │ ├── test_img_1.png │ ├── test_img_2.png │ ├── test_img_3.png │ └── test_img_4.png └── videos │ └── API_Video.mp4 ├── s3-config.js ├── s3 └── uploadFile.js ├── src ├── App.css ├── App.jsx ├── amplifyconfiguration.json ├── auth │ ├── otp │ │ ├── otp.jsx │ │ ├── otp.module.scss │ │ └── useOtp.js │ ├── signin │ │ ├── signin.jsx │ │ ├── signin.module.scss │ │ └── useSignin.js │ └── signup │ │ ├── signup.jsx │ │ ├── signup.module.scss │ │ └── useSignup.js ├── aws-exports.js ├── components │ ├── Protected │ │ ├── Instructor │ │ │ ├── addCourses │ │ │ │ ├── addCourses.jsx │ │ │ │ ├── addCourses.module.scss │ │ │ │ └── useAddCourses.js │ │ │ ├── addQuiz │ │ │ │ ├── addQuiz.jsx │ │ │ │ ├── addQuiz.module.scss │ │ │ │ └── useAddQuiz.js │ │ │ ├── drafts │ │ │ │ ├── drafts.jsx │ │ │ │ └── drafts.module.scss │ │ │ └── instructorDashboard │ │ │ │ ├── components │ │ │ │ ├── activity │ │ │ │ │ ├── activity.jsx │ │ │ │ │ └── activity.module.scss │ │ │ │ ├── banner │ │ │ │ │ ├── banner.jsx │ │ │ │ │ └── banner.module.scss │ │ │ │ └── sidebar │ │ │ │ │ ├── sidebar.jsx │ │ │ │ │ └── sidebar.module.scss │ │ │ │ ├── instructorDashboard.jsx │ │ │ │ ├── instructorDashboard.module.scss │ │ │ │ └── useInstructorDashboard.js │ │ ├── analytics │ │ │ ├── InstructorAnalytics.jsx │ │ │ ├── analytics.module.scss │ │ │ └── useAnalytics.js │ │ ├── becomeInstructor │ │ │ ├── becomeInstructor.jsx │ │ │ ├── becomeInstructor.module.scss │ │ │ ├── components │ │ │ │ ├── agreements │ │ │ │ │ ├── agreements.jsx │ │ │ │ │ ├── agreements.module.scss │ │ │ │ │ └── useAgreements.js │ │ │ │ ├── personalInformation │ │ │ │ │ ├── personalInformation.jsx │ │ │ │ │ ├── personalInformation.module.scss │ │ │ │ │ └── usePersonalInformation.js │ │ │ │ ├── professionalBackground │ │ │ │ │ ├── professionalBackground.jsx │ │ │ │ │ └── professionalBackground.module.scss │ │ │ │ └── technicalReadiness │ │ │ │ │ ├── technicalReadiness.jsx │ │ │ │ │ ├── technicalReadiness.module.scss │ │ │ │ │ └── useTechnicalReadiness.js │ │ │ └── useBecomeInstructor.js │ │ ├── certificate │ │ │ ├── certificate.jsx │ │ │ ├── certificate.module.scss │ │ │ └── useCertificate.js │ │ ├── courseDetailPage │ │ │ ├── courseDetailPage.jsx │ │ │ ├── courseDetailPage.module.scss │ │ │ └── useCourseDetailPage.js │ │ ├── courses │ │ │ ├── courses.jsx │ │ │ ├── courses.module.scss │ │ │ └── useCourses.js │ │ ├── dashboard │ │ │ ├── DashBoard.jsx │ │ │ ├── Dashboard.module.scss │ │ │ ├── components │ │ │ │ ├── activity │ │ │ │ │ ├── activity.jsx │ │ │ │ │ └── activity.module.scss │ │ │ │ ├── banner │ │ │ │ │ ├── banner.jsx │ │ │ │ │ └── banner.module.scss │ │ │ │ ├── courses │ │ │ │ │ ├── courses.jsx │ │ │ │ │ └── courses.module.scss │ │ │ │ └── sidebar │ │ │ │ │ ├── sidebar.jsx │ │ │ │ │ └── sidebar.module.scss │ │ │ └── useDashboard.js │ │ ├── enrollCourses │ │ │ ├── enrollCourses.jsx │ │ │ ├── enrollCourses.module.scss │ │ │ └── useEnrollCourses.js │ │ ├── error │ │ │ ├── error.jsx │ │ │ └── error.module.scss │ │ ├── exploreCourses │ │ │ ├── exploreCourses.jsx │ │ │ ├── exploreCourses.module.scss │ │ │ └── useExploreCourses.js │ │ ├── footer │ │ │ ├── footer.jsx │ │ │ ├── footer.module.scss │ │ │ └── useFooter.js │ │ ├── header │ │ │ ├── header.jsx │ │ │ ├── header.module.scss │ │ │ └── useHeader.js │ │ ├── instructorProfile │ │ │ ├── instructorProfile.jsx │ │ │ ├── instructorProfile.module.scss │ │ │ └── useInstructorProfile.js │ │ ├── instructorRoutes │ │ │ └── addCourses │ │ │ │ ├── addCourses.jsx │ │ │ │ ├── addCourses.module.scss │ │ │ │ └── useAddCourses.js │ │ ├── manageCourses │ │ │ ├── manageCourses.jsx │ │ │ ├── manageCourses.module.scss │ │ │ └── useManageCourses.js │ │ ├── notification │ │ │ ├── notification.jsx │ │ │ ├── notification.module.scss │ │ │ └── usenNotification.js │ │ ├── preference │ │ │ ├── preference.jsx │ │ │ ├── preference.module.scss │ │ │ └── usePreference.js │ │ ├── profile │ │ │ ├── profile.jsx │ │ │ ├── profile.module.scss │ │ │ └── useProfile.js │ │ ├── protectedRoutes │ │ │ └── protectedRoutes.jsx │ │ ├── protectedUI │ │ │ ├── protectedUI.jsx │ │ │ └── protectedUI.module.scss │ │ ├── quiz │ │ │ ├── quiz.jsx │ │ │ ├── quiz.module.scss │ │ │ └── useQuiz.js │ │ ├── reviewCourse │ │ │ ├── reviewCourse.jsx │ │ │ ├── reviewCourse.module.scss │ │ │ └── useReviewCourse.js │ │ ├── savedCourses │ │ │ ├── savedCourses.jsx │ │ │ ├── savedCourses.module.scss │ │ │ └── useSavedCourses.js │ │ ├── setting │ │ │ ├── setting.jsx │ │ │ ├── setting.module.scss │ │ │ └── useSetting.js │ │ └── sidebar │ │ │ ├── sidebar.jsx │ │ │ ├── sidebar.module.scss │ │ │ └── useSidebar.js │ ├── admin │ │ ├── InstructorsRequests │ │ │ ├── InstructorsRequests.jsx │ │ │ ├── InstructorsRequests.module.scss │ │ │ └── useInstructorsRequests.js │ │ ├── InstructorsRequestsDetails │ │ │ ├── InstructorsRequestsDetails.jsx │ │ │ ├── InstructorsRequestsDetails.module.scss │ │ │ └── useInstructorRequest.js │ │ ├── dashboard │ │ │ ├── adminDasboard.jsx │ │ │ ├── adminDasboard.module.scss │ │ │ └── useAdminDasboard.js │ │ └── users │ │ │ ├── components │ │ │ ├── instructors │ │ │ │ ├── instructor.jsx │ │ │ │ ├── instructors.module.scss │ │ │ │ └── useInstructors.jsx │ │ │ └── students │ │ │ │ ├── students.jsx │ │ │ │ ├── students.module.scss │ │ │ │ └── useStudent.js │ │ │ ├── useUsers.js │ │ │ ├── users.jsx │ │ │ └── users.module.scss │ ├── subCategory │ │ ├── subCategory.jsx │ │ ├── subCategory.module.scss │ │ ├── subCategoryItems │ │ │ └── subCategoryItems.js │ │ └── useSubCategory.js │ └── unProtected │ │ ├── about │ │ ├── about.jsx │ │ ├── about.module.scss │ │ ├── sections │ │ │ ├── GlobalLearning │ │ │ │ ├── globalLearning.jsx │ │ │ │ └── globalLearning.module.scss │ │ │ ├── StatsOverview │ │ │ │ ├── statsOverview.jsx │ │ │ │ └── statsOverview.module.scss │ │ │ └── specialAboutUs │ │ │ │ ├── specialAboutUs.jsx │ │ │ │ └── specialAboutUs.module.scss │ │ └── useAbout.js │ │ ├── contact │ │ ├── contact.jsx │ │ └── contact.module.scss │ │ ├── courses │ │ ├── courses.jsx │ │ ├── courses.module.scss │ │ └── useCourses.js │ │ ├── error │ │ ├── error.jsx │ │ └── error.module.scss │ │ ├── footer │ │ ├── footer.jsx │ │ ├── footer.module.scss │ │ └── useFooter.js │ │ ├── header │ │ ├── header.jsx │ │ ├── header.module.scss │ │ └── useHeader.js │ │ ├── instructor │ │ ├── instructor.jsx │ │ ├── instructor.module.scss │ │ ├── sections │ │ │ ├── howToBecome │ │ │ │ ├── howToBecome.jsx │ │ │ │ └── howToBecome.module.scss │ │ │ └── statsOverview │ │ │ │ ├── statsOverview.jsx │ │ │ │ └── statsOverview.module.scss │ │ └── useInstructor.js │ │ ├── landingPage │ │ ├── LandingPage.jsx │ │ ├── LandingPage.module.scss │ │ ├── TestimonialCard.jsx │ │ └── useLandingPage.js │ │ └── upProtectedRoutes │ │ ├── outer.module.scss │ │ └── unProtectedRoutes.jsx ├── containers │ ├── Icon.jsx │ ├── homeNavigation │ │ ├── homeNaigation.module.scss │ │ └── homeNavigation.jsx │ └── pageLoading │ │ ├── InnerPageLoading │ │ ├── innerPageLoading.jsx │ │ └── innerPageLoading.module.scss │ │ └── outerPageLoading │ │ ├── pageLoading.jsx │ │ └── pageLoading.module.scss ├── main.jsx ├── redux │ ├── actions │ │ └── index.js │ ├── reducers │ │ ├── Instructor.jsx │ │ ├── SerachInput.js │ │ ├── index.js │ │ ├── set_up_user.js │ │ └── switchMode.js │ └── store.js └── route │ └── route.jsx ├── vercel.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/README.md -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/amplify-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/amplify-meta.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/auth/eduwise69bc7994/build/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/auth/eduwise69bc7994/build/parameters.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/auth/eduwise69bc7994/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/auth/eduwise69bc7994/cli-inputs.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/awscloudformation/build/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/awscloudformation/build/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/awscloudformation/build/awscloudformation/build/root-cloudformation-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/awscloudformation/build/awscloudformation/build/root-cloudformation-stack.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/awscloudformation/build/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/awscloudformation/build/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/awscloudformation/build/root-cloudformation-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/awscloudformation/build/root-cloudformation-stack.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/awscloudformation/build/storage/eduwiseStorage/build/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/awscloudformation/build/storage/eduwiseStorage/build/cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/backend-config.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/amplify.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/amplify.state -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/event.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/index.js -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/package.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/function/S3Trigger61fc6c93/src/yarn.lock -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/storage/eduwiseStorage/build/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/storage/eduwiseStorage/build/cloudformation-template.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/storage/eduwiseStorage/build/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/storage/eduwiseStorage/build/parameters.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/storage/eduwiseStorage/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/storage/eduwiseStorage/cli-inputs.json -------------------------------------------------------------------------------- /amplify/#current-cloud-backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/#current-cloud-backend/tags.json -------------------------------------------------------------------------------- /amplify/.config/local-aws-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/.config/local-aws-info.json -------------------------------------------------------------------------------- /amplify/.config/local-env-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/.config/local-env-info.json -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/README.md -------------------------------------------------------------------------------- /amplify/backend/amplify-meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/amplify-meta.json -------------------------------------------------------------------------------- /amplify/backend/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/auth/eduwise69bc7994/build/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/auth/eduwise69bc7994/build/parameters.json -------------------------------------------------------------------------------- /amplify/backend/auth/eduwise69bc7994/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/auth/eduwise69bc7994/cli-inputs.json -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/build/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/awscloudformation/build/auth/eduwise69bc7994/build/eduwise69bc7994-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/build/awscloudformation/build/root-cloudformation-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/awscloudformation/build/awscloudformation/build/root-cloudformation-stack.json -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/build/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/awscloudformation/build/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/build/root-cloudformation-stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/awscloudformation/build/root-cloudformation-stack.json -------------------------------------------------------------------------------- /amplify/backend/awscloudformation/build/storage/eduwiseStorage/build/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/awscloudformation/build/storage/eduwiseStorage/build/cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/S3Trigger61fc6c93-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/amplify.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/amplify.state -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/src/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/src/event.json -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/src/index.js -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/src/package-lock.json -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/src/package.json -------------------------------------------------------------------------------- /amplify/backend/function/S3Trigger61fc6c93/src/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/function/S3Trigger61fc6c93/src/yarn.lock -------------------------------------------------------------------------------- /amplify/backend/storage/eduwiseStorage/build/cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/storage/eduwiseStorage/build/cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/storage/eduwiseStorage/build/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/storage/eduwiseStorage/build/parameters.json -------------------------------------------------------------------------------- /amplify/backend/storage/eduwiseStorage/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/storage/eduwiseStorage/cli-inputs.json -------------------------------------------------------------------------------- /amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/tags.json -------------------------------------------------------------------------------- /amplify/backend/types/amplify-dependent-resources-ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/backend/types/amplify-dependent-resources-ref.d.ts -------------------------------------------------------------------------------- /amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/cli.json -------------------------------------------------------------------------------- /amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/hooks/README.md -------------------------------------------------------------------------------- /amplify/hooks/post-push.sh.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/hooks/post-push.sh.sample -------------------------------------------------------------------------------- /amplify/hooks/pre-push.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/hooks/pre-push.js.sample -------------------------------------------------------------------------------- /amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/amplify/team-provider-info.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/config.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/icons/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/Facebook.png -------------------------------------------------------------------------------- /public/icons/Linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/Linkedin.png -------------------------------------------------------------------------------- /public/icons/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/Twitter.png -------------------------------------------------------------------------------- /public/icons/Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/Youtube.png -------------------------------------------------------------------------------- /public/icons/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/address.png -------------------------------------------------------------------------------- /public/icons/book_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/book_filled.png -------------------------------------------------------------------------------- /public/icons/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/call.png -------------------------------------------------------------------------------- /public/icons/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/community.png -------------------------------------------------------------------------------- /public/icons/course_degree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/course_degree.png -------------------------------------------------------------------------------- /public/icons/courses_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/courses_filled.png -------------------------------------------------------------------------------- /public/icons/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/dashboard.png -------------------------------------------------------------------------------- /public/icons/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/globe.png -------------------------------------------------------------------------------- /public/icons/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/history.png -------------------------------------------------------------------------------- /public/icons/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/mail.png -------------------------------------------------------------------------------- /public/icons/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/message.png -------------------------------------------------------------------------------- /public/icons/mind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/mind.png -------------------------------------------------------------------------------- /public/icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/money.png -------------------------------------------------------------------------------- /public/icons/nextIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/nextIcon.png -------------------------------------------------------------------------------- /public/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/note.png -------------------------------------------------------------------------------- /public/icons/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/notification.png -------------------------------------------------------------------------------- /public/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/star.png -------------------------------------------------------------------------------- /public/icons/tick_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/tick_filled.png -------------------------------------------------------------------------------- /public/icons/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/users.png -------------------------------------------------------------------------------- /public/icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/icons/video.png -------------------------------------------------------------------------------- /public/images/PF_img_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/PF_img_main.png -------------------------------------------------------------------------------- /public/images/become-instructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/become-instructor.png -------------------------------------------------------------------------------- /public/images/become-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/become-student.png -------------------------------------------------------------------------------- /public/images/book-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/book-icon.png -------------------------------------------------------------------------------- /public/images/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/bulb.png -------------------------------------------------------------------------------- /public/images/category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_1.png -------------------------------------------------------------------------------- /public/images/category_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_10.png -------------------------------------------------------------------------------- /public/images/category_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_11.png -------------------------------------------------------------------------------- /public/images/category_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_12.png -------------------------------------------------------------------------------- /public/images/category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_2.png -------------------------------------------------------------------------------- /public/images/category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_3.png -------------------------------------------------------------------------------- /public/images/category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_4.png -------------------------------------------------------------------------------- /public/images/category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_5.png -------------------------------------------------------------------------------- /public/images/category_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_6.png -------------------------------------------------------------------------------- /public/images/category_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_7.png -------------------------------------------------------------------------------- /public/images/category_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_8.png -------------------------------------------------------------------------------- /public/images/category_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/category_9.png -------------------------------------------------------------------------------- /public/images/certificate_dummy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/certificate_dummy.jpg -------------------------------------------------------------------------------- /public/images/charge-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/charge-img.png -------------------------------------------------------------------------------- /public/images/contact_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/contact_bg.jpg -------------------------------------------------------------------------------- /public/images/contactus_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/contactus_bg.jpg -------------------------------------------------------------------------------- /public/images/course_thumbail_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_1.png -------------------------------------------------------------------------------- /public/images/course_thumbail_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_2.png -------------------------------------------------------------------------------- /public/images/course_thumbail_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_3.png -------------------------------------------------------------------------------- /public/images/course_thumbail_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_4.png -------------------------------------------------------------------------------- /public/images/course_thumbail_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_5.png -------------------------------------------------------------------------------- /public/images/course_thumbail_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_6.png -------------------------------------------------------------------------------- /public/images/course_thumbail_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_7.png -------------------------------------------------------------------------------- /public/images/course_thumbail_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/course_thumbail_8.png -------------------------------------------------------------------------------- /public/images/courses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/courses.png -------------------------------------------------------------------------------- /public/images/courses_hero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/courses_hero_bg.png -------------------------------------------------------------------------------- /public/images/dummy_certificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/dummy_certificate.jpg -------------------------------------------------------------------------------- /public/images/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/graph.png -------------------------------------------------------------------------------- /public/images/help_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/help_img.png -------------------------------------------------------------------------------- /public/images/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/hero-bg.png -------------------------------------------------------------------------------- /public/images/instructor_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/instructor_bg.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/make_special_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/make_special_img_1.png -------------------------------------------------------------------------------- /public/images/make_special_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/make_special_img_2.png -------------------------------------------------------------------------------- /public/images/make_special_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/make_special_img_3.png -------------------------------------------------------------------------------- /public/images/not_found_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/not_found_image.png -------------------------------------------------------------------------------- /public/images/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/notes.png -------------------------------------------------------------------------------- /public/images/otp_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/otp_img.png -------------------------------------------------------------------------------- /public/images/profileImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/profileImg.png -------------------------------------------------------------------------------- /public/images/side_bar_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/side_bar_card.png -------------------------------------------------------------------------------- /public/images/side_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/side_img.png -------------------------------------------------------------------------------- /public/images/sign_in_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/sign_in_img.png -------------------------------------------------------------------------------- /public/images/sign_up_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/sign_up_img.png -------------------------------------------------------------------------------- /public/images/smart-learn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/smart-learn-logo.png -------------------------------------------------------------------------------- /public/images/statsOverviewBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/statsOverviewBG.png -------------------------------------------------------------------------------- /public/images/tab_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/tab_img_1.png -------------------------------------------------------------------------------- /public/images/test_img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/test_img_1.png -------------------------------------------------------------------------------- /public/images/test_img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/test_img_2.png -------------------------------------------------------------------------------- /public/images/test_img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/test_img_3.png -------------------------------------------------------------------------------- /public/images/test_img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/images/test_img_4.png -------------------------------------------------------------------------------- /public/videos/API_Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/public/videos/API_Video.mp4 -------------------------------------------------------------------------------- /s3-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/s3-config.js -------------------------------------------------------------------------------- /s3/uploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/s3/uploadFile.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/amplifyconfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/amplifyconfiguration.json -------------------------------------------------------------------------------- /src/auth/otp/otp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/otp/otp.jsx -------------------------------------------------------------------------------- /src/auth/otp/otp.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/otp/otp.module.scss -------------------------------------------------------------------------------- /src/auth/otp/useOtp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/otp/useOtp.js -------------------------------------------------------------------------------- /src/auth/signin/signin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signin/signin.jsx -------------------------------------------------------------------------------- /src/auth/signin/signin.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signin/signin.module.scss -------------------------------------------------------------------------------- /src/auth/signin/useSignin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signin/useSignin.js -------------------------------------------------------------------------------- /src/auth/signup/signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signup/signup.jsx -------------------------------------------------------------------------------- /src/auth/signup/signup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signup/signup.module.scss -------------------------------------------------------------------------------- /src/auth/signup/useSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/auth/signup/useSignup.js -------------------------------------------------------------------------------- /src/aws-exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/aws-exports.js -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addCourses/addCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addCourses/addCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addCourses/addCourses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addCourses/addCourses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addCourses/useAddCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addCourses/useAddCourses.js -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addQuiz/addQuiz.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addQuiz/addQuiz.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addQuiz/addQuiz.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addQuiz/addQuiz.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/addQuiz/useAddQuiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/addQuiz/useAddQuiz.js -------------------------------------------------------------------------------- /src/components/Protected/Instructor/drafts/drafts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/drafts/drafts.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/drafts/drafts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/drafts/drafts.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/activity/activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/activity/activity.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/activity/activity.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/activity/activity.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/banner/banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/banner/banner.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/banner/banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/banner/banner.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/sidebar/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/sidebar/sidebar.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/components/sidebar/sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/components/sidebar/sidebar.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/instructorDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/instructorDashboard.jsx -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/instructorDashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/instructorDashboard.module.scss -------------------------------------------------------------------------------- /src/components/Protected/Instructor/instructorDashboard/useInstructorDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/Instructor/instructorDashboard/useInstructorDashboard.js -------------------------------------------------------------------------------- /src/components/Protected/analytics/InstructorAnalytics.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/analytics/InstructorAnalytics.jsx -------------------------------------------------------------------------------- /src/components/Protected/analytics/analytics.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/analytics/analytics.module.scss -------------------------------------------------------------------------------- /src/components/Protected/analytics/useAnalytics.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/becomeInstructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/becomeInstructor.jsx -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/becomeInstructor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/becomeInstructor.module.scss -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/agreements/agreements.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/agreements/agreements.jsx -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/agreements/agreements.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/agreements/agreements.module.scss -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/agreements/useAgreements.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/personalInformation/personalInformation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/personalInformation/personalInformation.jsx -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/personalInformation/personalInformation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/personalInformation/personalInformation.module.scss -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/personalInformation/usePersonalInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/personalInformation/usePersonalInformation.js -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/professionalBackground/professionalBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/professionalBackground/professionalBackground.jsx -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/professionalBackground/professionalBackground.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/professionalBackground/professionalBackground.module.scss -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/technicalReadiness/technicalReadiness.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/technicalReadiness/technicalReadiness.jsx -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/technicalReadiness/technicalReadiness.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/components/technicalReadiness/technicalReadiness.module.scss -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/components/technicalReadiness/useTechnicalReadiness.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/becomeInstructor/useBecomeInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/becomeInstructor/useBecomeInstructor.js -------------------------------------------------------------------------------- /src/components/Protected/certificate/certificate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/certificate/certificate.jsx -------------------------------------------------------------------------------- /src/components/Protected/certificate/certificate.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/certificate/certificate.module.scss -------------------------------------------------------------------------------- /src/components/Protected/certificate/useCertificate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/certificate/useCertificate.js -------------------------------------------------------------------------------- /src/components/Protected/courseDetailPage/courseDetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courseDetailPage/courseDetailPage.jsx -------------------------------------------------------------------------------- /src/components/Protected/courseDetailPage/courseDetailPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courseDetailPage/courseDetailPage.module.scss -------------------------------------------------------------------------------- /src/components/Protected/courseDetailPage/useCourseDetailPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courseDetailPage/useCourseDetailPage.js -------------------------------------------------------------------------------- /src/components/Protected/courses/courses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courses/courses.jsx -------------------------------------------------------------------------------- /src/components/Protected/courses/courses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courses/courses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/courses/useCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/courses/useCourses.js -------------------------------------------------------------------------------- /src/components/Protected/dashboard/DashBoard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/DashBoard.jsx -------------------------------------------------------------------------------- /src/components/Protected/dashboard/Dashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/Dashboard.module.scss -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/activity/activity.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/activity/activity.jsx -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/activity/activity.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/activity/activity.module.scss -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/banner/banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/banner/banner.jsx -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/banner/banner.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/banner/banner.module.scss -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/courses/courses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/courses/courses.jsx -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/courses/courses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/courses/courses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/sidebar/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/sidebar/sidebar.jsx -------------------------------------------------------------------------------- /src/components/Protected/dashboard/components/sidebar/sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/dashboard/components/sidebar/sidebar.module.scss -------------------------------------------------------------------------------- /src/components/Protected/dashboard/useDashboard.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/enrollCourses/enrollCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/enrollCourses/enrollCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/enrollCourses/enrollCourses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/enrollCourses/enrollCourses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/enrollCourses/useEnrollCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/enrollCourses/useEnrollCourses.js -------------------------------------------------------------------------------- /src/components/Protected/error/error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/error/error.jsx -------------------------------------------------------------------------------- /src/components/Protected/error/error.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/error/error.module.scss -------------------------------------------------------------------------------- /src/components/Protected/exploreCourses/exploreCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/exploreCourses/exploreCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/exploreCourses/exploreCourses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/exploreCourses/exploreCourses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/exploreCourses/useExploreCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/exploreCourses/useExploreCourses.js -------------------------------------------------------------------------------- /src/components/Protected/footer/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/footer/footer.jsx -------------------------------------------------------------------------------- /src/components/Protected/footer/footer.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/footer/useFooter.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/header/header.jsx -------------------------------------------------------------------------------- /src/components/Protected/header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/header/header.module.scss -------------------------------------------------------------------------------- /src/components/Protected/header/useHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/header/useHeader.js -------------------------------------------------------------------------------- /src/components/Protected/instructorProfile/instructorProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/instructorProfile/instructorProfile.jsx -------------------------------------------------------------------------------- /src/components/Protected/instructorProfile/instructorProfile.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/instructorProfile/instructorProfile.module.scss -------------------------------------------------------------------------------- /src/components/Protected/instructorProfile/useInstructorProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/instructorProfile/useInstructorProfile.js -------------------------------------------------------------------------------- /src/components/Protected/instructorRoutes/addCourses/addCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/instructorRoutes/addCourses/addCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/instructorRoutes/addCourses/addCourses.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/instructorRoutes/addCourses/useAddCourses.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/manageCourses/manageCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/manageCourses/manageCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/manageCourses/manageCourses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/manageCourses/manageCourses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/manageCourses/useManageCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/manageCourses/useManageCourses.js -------------------------------------------------------------------------------- /src/components/Protected/notification/notification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/notification/notification.jsx -------------------------------------------------------------------------------- /src/components/Protected/notification/notification.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/notification/notification.module.scss -------------------------------------------------------------------------------- /src/components/Protected/notification/usenNotification.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/preference/preference.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/preference/preference.jsx -------------------------------------------------------------------------------- /src/components/Protected/preference/preference.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/preference/preference.module.scss -------------------------------------------------------------------------------- /src/components/Protected/preference/usePreference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/preference/usePreference.js -------------------------------------------------------------------------------- /src/components/Protected/profile/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/profile/profile.jsx -------------------------------------------------------------------------------- /src/components/Protected/profile/profile.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/profile/useProfile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Protected/protectedRoutes/protectedRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/protectedRoutes/protectedRoutes.jsx -------------------------------------------------------------------------------- /src/components/Protected/protectedUI/protectedUI.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/protectedUI/protectedUI.jsx -------------------------------------------------------------------------------- /src/components/Protected/protectedUI/protectedUI.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/protectedUI/protectedUI.module.scss -------------------------------------------------------------------------------- /src/components/Protected/quiz/quiz.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/quiz/quiz.jsx -------------------------------------------------------------------------------- /src/components/Protected/quiz/quiz.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/quiz/quiz.module.scss -------------------------------------------------------------------------------- /src/components/Protected/quiz/useQuiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/quiz/useQuiz.js -------------------------------------------------------------------------------- /src/components/Protected/reviewCourse/reviewCourse.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/reviewCourse/reviewCourse.jsx -------------------------------------------------------------------------------- /src/components/Protected/reviewCourse/reviewCourse.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/reviewCourse/reviewCourse.module.scss -------------------------------------------------------------------------------- /src/components/Protected/reviewCourse/useReviewCourse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/reviewCourse/useReviewCourse.js -------------------------------------------------------------------------------- /src/components/Protected/savedCourses/savedCourses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/savedCourses/savedCourses.jsx -------------------------------------------------------------------------------- /src/components/Protected/savedCourses/savedCourses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/savedCourses/savedCourses.module.scss -------------------------------------------------------------------------------- /src/components/Protected/savedCourses/useSavedCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/savedCourses/useSavedCourses.js -------------------------------------------------------------------------------- /src/components/Protected/setting/setting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/setting/setting.jsx -------------------------------------------------------------------------------- /src/components/Protected/setting/setting.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/setting/setting.module.scss -------------------------------------------------------------------------------- /src/components/Protected/setting/useSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/setting/useSetting.js -------------------------------------------------------------------------------- /src/components/Protected/sidebar/sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/sidebar/sidebar.jsx -------------------------------------------------------------------------------- /src/components/Protected/sidebar/sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/sidebar/sidebar.module.scss -------------------------------------------------------------------------------- /src/components/Protected/sidebar/useSidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/Protected/sidebar/useSidebar.js -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequests/InstructorsRequests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequests/InstructorsRequests.jsx -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequests/InstructorsRequests.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequests/InstructorsRequests.module.scss -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequests/useInstructorsRequests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequests/useInstructorsRequests.js -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequestsDetails/InstructorsRequestsDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequestsDetails/InstructorsRequestsDetails.jsx -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequestsDetails/InstructorsRequestsDetails.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequestsDetails/InstructorsRequestsDetails.module.scss -------------------------------------------------------------------------------- /src/components/admin/InstructorsRequestsDetails/useInstructorRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/InstructorsRequestsDetails/useInstructorRequest.js -------------------------------------------------------------------------------- /src/components/admin/dashboard/adminDasboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/dashboard/adminDasboard.jsx -------------------------------------------------------------------------------- /src/components/admin/dashboard/adminDasboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/dashboard/adminDasboard.module.scss -------------------------------------------------------------------------------- /src/components/admin/dashboard/useAdminDasboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/dashboard/useAdminDasboard.js -------------------------------------------------------------------------------- /src/components/admin/users/components/instructors/instructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/instructors/instructor.jsx -------------------------------------------------------------------------------- /src/components/admin/users/components/instructors/instructors.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/instructors/instructors.module.scss -------------------------------------------------------------------------------- /src/components/admin/users/components/instructors/useInstructors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/instructors/useInstructors.jsx -------------------------------------------------------------------------------- /src/components/admin/users/components/students/students.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/students/students.jsx -------------------------------------------------------------------------------- /src/components/admin/users/components/students/students.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/students/students.module.scss -------------------------------------------------------------------------------- /src/components/admin/users/components/students/useStudent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/components/students/useStudent.js -------------------------------------------------------------------------------- /src/components/admin/users/useUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/useUsers.js -------------------------------------------------------------------------------- /src/components/admin/users/users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/users.jsx -------------------------------------------------------------------------------- /src/components/admin/users/users.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/admin/users/users.module.scss -------------------------------------------------------------------------------- /src/components/subCategory/subCategory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/subCategory/subCategory.jsx -------------------------------------------------------------------------------- /src/components/subCategory/subCategory.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/subCategory/subCategory.module.scss -------------------------------------------------------------------------------- /src/components/subCategory/subCategoryItems/subCategoryItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/subCategory/subCategoryItems/subCategoryItems.js -------------------------------------------------------------------------------- /src/components/subCategory/useSubCategory.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/unProtected/about/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/about.jsx -------------------------------------------------------------------------------- /src/components/unProtected/about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/about.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/GlobalLearning/globalLearning.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/GlobalLearning/globalLearning.jsx -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/GlobalLearning/globalLearning.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/GlobalLearning/globalLearning.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/StatsOverview/statsOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/StatsOverview/statsOverview.jsx -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/StatsOverview/statsOverview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/StatsOverview/statsOverview.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/specialAboutUs/specialAboutUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/specialAboutUs/specialAboutUs.jsx -------------------------------------------------------------------------------- /src/components/unProtected/about/sections/specialAboutUs/specialAboutUs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/sections/specialAboutUs/specialAboutUs.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/about/useAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/about/useAbout.js -------------------------------------------------------------------------------- /src/components/unProtected/contact/contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/contact/contact.jsx -------------------------------------------------------------------------------- /src/components/unProtected/contact/contact.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/contact/contact.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/courses/courses.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/courses/courses.jsx -------------------------------------------------------------------------------- /src/components/unProtected/courses/courses.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/courses/courses.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/courses/useCourses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/courses/useCourses.js -------------------------------------------------------------------------------- /src/components/unProtected/error/error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/error/error.jsx -------------------------------------------------------------------------------- /src/components/unProtected/error/error.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/error/error.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/footer/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/footer/footer.jsx -------------------------------------------------------------------------------- /src/components/unProtected/footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/footer/footer.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/footer/useFooter.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/unProtected/header/header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/header/header.jsx -------------------------------------------------------------------------------- /src/components/unProtected/header/header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/header/header.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/header/useHeader.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/unProtected/instructor/instructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/instructor.jsx -------------------------------------------------------------------------------- /src/components/unProtected/instructor/instructor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/instructor.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/instructor/sections/howToBecome/howToBecome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/sections/howToBecome/howToBecome.jsx -------------------------------------------------------------------------------- /src/components/unProtected/instructor/sections/howToBecome/howToBecome.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/sections/howToBecome/howToBecome.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/instructor/sections/statsOverview/statsOverview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/sections/statsOverview/statsOverview.jsx -------------------------------------------------------------------------------- /src/components/unProtected/instructor/sections/statsOverview/statsOverview.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/sections/statsOverview/statsOverview.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/instructor/useInstructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/instructor/useInstructor.js -------------------------------------------------------------------------------- /src/components/unProtected/landingPage/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/landingPage/LandingPage.jsx -------------------------------------------------------------------------------- /src/components/unProtected/landingPage/LandingPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/landingPage/LandingPage.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/landingPage/TestimonialCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/landingPage/TestimonialCard.jsx -------------------------------------------------------------------------------- /src/components/unProtected/landingPage/useLandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/landingPage/useLandingPage.js -------------------------------------------------------------------------------- /src/components/unProtected/upProtectedRoutes/outer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/upProtectedRoutes/outer.module.scss -------------------------------------------------------------------------------- /src/components/unProtected/upProtectedRoutes/unProtectedRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/components/unProtected/upProtectedRoutes/unProtectedRoutes.jsx -------------------------------------------------------------------------------- /src/containers/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/Icon.jsx -------------------------------------------------------------------------------- /src/containers/homeNavigation/homeNaigation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/homeNavigation/homeNaigation.module.scss -------------------------------------------------------------------------------- /src/containers/homeNavigation/homeNavigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/homeNavigation/homeNavigation.jsx -------------------------------------------------------------------------------- /src/containers/pageLoading/InnerPageLoading/innerPageLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/pageLoading/InnerPageLoading/innerPageLoading.jsx -------------------------------------------------------------------------------- /src/containers/pageLoading/InnerPageLoading/innerPageLoading.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/pageLoading/InnerPageLoading/innerPageLoading.module.scss -------------------------------------------------------------------------------- /src/containers/pageLoading/outerPageLoading/pageLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/pageLoading/outerPageLoading/pageLoading.jsx -------------------------------------------------------------------------------- /src/containers/pageLoading/outerPageLoading/pageLoading.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/containers/pageLoading/outerPageLoading/pageLoading.module.scss -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/redux/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/actions/index.js -------------------------------------------------------------------------------- /src/redux/reducers/Instructor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/reducers/Instructor.jsx -------------------------------------------------------------------------------- /src/redux/reducers/SerachInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/reducers/SerachInput.js -------------------------------------------------------------------------------- /src/redux/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/reducers/index.js -------------------------------------------------------------------------------- /src/redux/reducers/set_up_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/reducers/set_up_user.js -------------------------------------------------------------------------------- /src/redux/reducers/switchMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/reducers/switchMode.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/route/route.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/src/route/route.jsx -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faaizmahmood/eduwise-frontend/HEAD/vite.config.js --------------------------------------------------------------------------------