├── src ├── index.css ├── assets │ ├── Images │ │ ├── frame.png │ │ ├── rzp.png │ │ ├── banner.mp4 │ │ ├── login.webp │ │ ├── signup.webp │ │ ├── Instructor.png │ │ ├── aboutus1.webp │ │ ├── aboutus2.webp │ │ ├── aboutus3.webp │ │ ├── boxoffice.png │ │ ├── FoundingStory.png │ │ ├── TimelineImage.png │ │ ├── Plan_your_lessons.png │ │ ├── Compare_with_others.png │ │ └── Know_your_progress.png │ ├── Logo │ │ ├── Logo-Full-Dark.png │ │ ├── Logo-Full-Light.png │ │ ├── Logo-Small-Dark.png │ │ └── Logo-Small-Light.png │ └── TimeLineLogo │ │ ├── Logo4.svg │ │ ├── Logo3.svg │ │ ├── Logo1.svg │ │ └── Logo2.svg ├── Components │ ├── core │ │ ├── Dashboard │ │ │ ├── PurchaseHistory.jsx │ │ │ ├── Cart │ │ │ │ ├── index.jsx │ │ │ │ ├── RenderTotalAmount.jsx │ │ │ │ └── RenderCartCourses.jsx │ │ │ ├── SidebarLink.jsx │ │ │ ├── AddCourse │ │ │ │ ├── index.jsx │ │ │ │ ├── CourseInformation │ │ │ │ │ ├── ChipInput.jsx │ │ │ │ │ ├── RequirementField.jsx │ │ │ │ │ └── Upload.jsx │ │ │ │ └── RenderSteps.jsx │ │ │ ├── EditCourse.jsx │ │ │ │ └── EditCourse.jsx │ │ │ ├── MyCourses │ │ │ │ └── MyCourses.jsx │ │ │ ├── AdminPannel.jsx │ │ │ ├── InstructorDashboard │ │ │ │ └── DashboardChart.jsx │ │ │ ├── PublishCourse │ │ │ │ └── PublishCourse.jsx │ │ │ └── Sidebar.jsx │ │ ├── HomePage │ │ │ ├── HighlightText.jsx │ │ │ ├── Button.jsx │ │ │ ├── CourseCard.jsx │ │ │ ├── InstructorSection.jsx │ │ │ ├── LearningLanguageSection.jsx │ │ │ ├── CodeBlocks.jsx │ │ │ ├── ExploreMore.jsx │ │ │ └── TimelineSection.jsx │ │ ├── Auth │ │ │ ├── PrivateRoute.jsx │ │ │ ├── OpenRoute.jsx │ │ │ ├── Template.jsx │ │ │ ├── ProfileDropDown.jsx │ │ │ └── LoginForm.jsx │ │ ├── AboutPage │ │ │ ├── ContactFormSection.jsx │ │ │ ├── Quote.jsx │ │ │ ├── Stats.jsx │ │ │ └── LearningGrid.jsx │ │ ├── Catalog │ │ │ └── CatalogCard.jsx │ │ └── ViewCourse │ │ │ └── ReviewModal.jsx │ ├── ScrollToTop.js │ └── common │ │ ├── Tab.jsx │ │ ├── IconBtn.jsx │ │ ├── RatingStars.jsx │ │ └── ConfirmationModal.jsx ├── swDev.js ├── utils │ ├── constants.js │ └── avgRating.js ├── pages │ ├── Error.jsx │ ├── Signup.jsx │ ├── Dashboard.jsx │ ├── ViewCourse.jsx │ ├── VerifyOtp.jsx │ ├── Login.jsx │ ├── ForgotPassword.jsx │ └── SearchCourse.jsx ├── data │ ├── navbar-links.js │ ├── dashboard-links.js │ └── footer-links.js ├── services │ ├── apiConnector.js │ ├── formatDate.js │ ├── operations │ │ └── pageAndComponentData.js │ └── apis.js ├── slices │ ├── loadingBarSlice.js │ ├── profileSlice.js │ ├── authSlice.js │ ├── courseSlice.js │ ├── viewCourseSlice.js │ └── cartSlice.js ├── reducers │ └── index.js ├── index.js └── hooks │ └── useOnClickOutside.js ├── public ├── robots.txt ├── ios │ ├── 16.png │ ├── 20.png │ ├── 29.png │ ├── 32.png │ ├── 40.png │ ├── 50.png │ ├── 57.png │ ├── 58.png │ ├── 60.png │ ├── 64.png │ ├── 72.png │ ├── 76.png │ ├── 80.png │ ├── 87.png │ ├── 100.png │ ├── 1024.png │ ├── 114.png │ ├── 120.png │ ├── 128.png │ ├── 144.png │ ├── 152.png │ ├── 167.png │ ├── 180.png │ ├── 192.png │ ├── 256.png │ └── 512.png ├── Logo-Full-Light.png ├── Logo-Small-Light.png ├── windows11 │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-20.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-30.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-36.png │ ├── Square44x44Logo.targetsize-40.png │ ├── Square44x44Logo.targetsize-44.png │ ├── Square44x44Logo.targetsize-48.png │ ├── Square44x44Logo.targetsize-60.png │ ├── Square44x44Logo.targetsize-64.png │ ├── Square44x44Logo.targetsize-72.png │ ├── Square44x44Logo.targetsize-80.png │ ├── Square44x44Logo.targetsize-96.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-20.png │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ ├── Square44x44Logo.altform-unplated_targetsize-30.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-36.png │ ├── Square44x44Logo.altform-unplated_targetsize-40.png │ ├── Square44x44Logo.altform-unplated_targetsize-44.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-60.png │ ├── Square44x44Logo.altform-unplated_targetsize-64.png │ ├── Square44x44Logo.altform-unplated_targetsize-72.png │ ├── Square44x44Logo.altform-unplated_targetsize-80.png │ ├── Square44x44Logo.altform-unplated_targetsize-96.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-20.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-30.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-36.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-40.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-44.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-60.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-64.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-72.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-80.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-96.png │ └── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── android │ ├── android-launchericon-144-144.png │ ├── android-launchericon-192-192.png │ ├── android-launchericon-48-48.png │ ├── android-launchericon-512-512.png │ ├── android-launchericon-72-72.png │ └── android-launchericon-96-96.png ├── service-worker.js └── index.css ├── .env.example ├── server ├── config │ ├── razorpay.js │ ├── cloudinary.js │ └── database.js ├── routes │ ├── ContactUs.js │ ├── Payments.js │ ├── Profile.js │ └── User.js ├── models │ ├── SubSection.js │ ├── Section.js │ ├── Category.js │ ├── Profile.js │ ├── CourseProgress.js │ ├── RatingAndReview.js │ ├── Course.js │ ├── OTP.js │ └── User.js ├── middlewares │ ├── demo.js │ └── auth.js ├── utils │ ├── imageUploader.js │ ├── secToDuration.js │ └── mailSender.js ├── package.json ├── .env.example ├── controllers │ ├── ContactUs.js │ ├── ResetPassword.js │ ├── Section.js │ └── RatingAndReviews.js ├── index.js └── mail │ └── templates │ ├── emailVerificationTemplate.js │ ├── passwordUpdate.js │ ├── courseEnrollmentEmail.js │ └── paymentSuccess.js ├── .gitignore ├── LICENSE ├── package.json ├── tailwind.config.js └── README.md /src/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/16.png -------------------------------------------------------------------------------- /public/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/20.png -------------------------------------------------------------------------------- /public/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/29.png -------------------------------------------------------------------------------- /public/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/32.png -------------------------------------------------------------------------------- /public/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/40.png -------------------------------------------------------------------------------- /public/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/50.png -------------------------------------------------------------------------------- /public/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/57.png -------------------------------------------------------------------------------- /public/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/58.png -------------------------------------------------------------------------------- /public/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/60.png -------------------------------------------------------------------------------- /public/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/64.png -------------------------------------------------------------------------------- /public/ios/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/72.png -------------------------------------------------------------------------------- /public/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/76.png -------------------------------------------------------------------------------- /public/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/80.png -------------------------------------------------------------------------------- /public/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/87.png -------------------------------------------------------------------------------- /public/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/100.png -------------------------------------------------------------------------------- /public/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/1024.png -------------------------------------------------------------------------------- /public/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/114.png -------------------------------------------------------------------------------- /public/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/120.png -------------------------------------------------------------------------------- /public/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/128.png -------------------------------------------------------------------------------- /public/ios/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/144.png -------------------------------------------------------------------------------- /public/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/152.png -------------------------------------------------------------------------------- /public/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/167.png -------------------------------------------------------------------------------- /public/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/180.png -------------------------------------------------------------------------------- /public/ios/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/192.png -------------------------------------------------------------------------------- /public/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/256.png -------------------------------------------------------------------------------- /public/ios/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/ios/512.png -------------------------------------------------------------------------------- /public/Logo-Full-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/Logo-Full-Light.png -------------------------------------------------------------------------------- /public/Logo-Small-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/Logo-Small-Light.png -------------------------------------------------------------------------------- /src/assets/Images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/frame.png -------------------------------------------------------------------------------- /src/assets/Images/rzp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/rzp.png -------------------------------------------------------------------------------- /src/assets/Images/banner.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/banner.mp4 -------------------------------------------------------------------------------- /src/assets/Images/login.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/login.webp -------------------------------------------------------------------------------- /src/assets/Images/signup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/signup.webp -------------------------------------------------------------------------------- /src/assets/Images/Instructor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/Instructor.png -------------------------------------------------------------------------------- /src/assets/Images/aboutus1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/aboutus1.webp -------------------------------------------------------------------------------- /src/assets/Images/aboutus2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/aboutus2.webp -------------------------------------------------------------------------------- /src/assets/Images/aboutus3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/aboutus3.webp -------------------------------------------------------------------------------- /src/assets/Images/boxoffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/boxoffice.png -------------------------------------------------------------------------------- /src/assets/Logo/Logo-Full-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Logo/Logo-Full-Dark.png -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | REACT_APP_BASE_URL = http://localhost:4000/api/v1 2 | 3 | REACT_APP_RAZORPAY_KEY_ID = # Razorpay Key ID get from Razorpay website -------------------------------------------------------------------------------- /src/assets/Images/FoundingStory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/FoundingStory.png -------------------------------------------------------------------------------- /src/assets/Images/TimelineImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/TimelineImage.png -------------------------------------------------------------------------------- /src/assets/Logo/Logo-Full-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Logo/Logo-Full-Light.png -------------------------------------------------------------------------------- /src/assets/Logo/Logo-Small-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Logo/Logo-Small-Dark.png -------------------------------------------------------------------------------- /src/assets/Logo/Logo-Small-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Logo/Logo-Small-Light.png -------------------------------------------------------------------------------- /src/assets/Images/Plan_your_lessons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/Plan_your_lessons.png -------------------------------------------------------------------------------- /public/windows11/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/LargeTile.scale-100.png -------------------------------------------------------------------------------- /public/windows11/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/LargeTile.scale-125.png -------------------------------------------------------------------------------- /public/windows11/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/LargeTile.scale-150.png -------------------------------------------------------------------------------- /public/windows11/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/LargeTile.scale-200.png -------------------------------------------------------------------------------- /public/windows11/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/LargeTile.scale-400.png -------------------------------------------------------------------------------- /public/windows11/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SmallTile.scale-100.png -------------------------------------------------------------------------------- /public/windows11/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SmallTile.scale-125.png -------------------------------------------------------------------------------- /public/windows11/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SmallTile.scale-150.png -------------------------------------------------------------------------------- /public/windows11/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SmallTile.scale-200.png -------------------------------------------------------------------------------- /public/windows11/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SmallTile.scale-400.png -------------------------------------------------------------------------------- /public/windows11/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /public/windows11/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /public/windows11/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /public/windows11/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /public/windows11/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/assets/Images/Compare_with_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/Compare_with_others.png -------------------------------------------------------------------------------- /src/assets/Images/Know_your_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/src/assets/Images/Know_your_progress.png -------------------------------------------------------------------------------- /public/windows11/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /public/windows11/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /public/windows11/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /public/windows11/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /public/windows11/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /public/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /public/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /public/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /public/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /public/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /public/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /public/windows11/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /public/windows11/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /public/windows11/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /public/windows11/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /public/windows11/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /public/windows11/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /public/windows11/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /public/windows11/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /public/windows11/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /public/windows11/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-44.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png -------------------------------------------------------------------------------- /server/config/razorpay.js: -------------------------------------------------------------------------------- 1 | const Razorpay = require("razorpay"); 2 | 3 | 4 | exports.instance = new Razorpay({ 5 | key_id: process.env.RAZORPAY_KEY, 6 | key_secret: process.env.RAZORPAY_SECRET, 7 | }); -------------------------------------------------------------------------------- /public/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalparmarr/Study-Notion-master/HEAD/public/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Components/core/Dashboard/PurchaseHistory.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const PurchaseHistory = () => { 4 | return ( 5 |
Error-404
7 |11 | We'd love to here for you, Please fill out this form. 12 |
13 |{totalItems} Courses in Cart
16 | 17 | {total > 0 18 | ? (Your Cart is Empty
)} 23 |${key} : ${data[key]}
`; 24 | })}` 25 | ); 26 | if (info) { 27 | return res.status(200).send({ 28 | success: true, 29 | message: "Your message has been sent successfully", 30 | }); 31 | } else { 32 | return res.status(403).send({ 33 | success: false, 34 | message: "Something went wrong", 35 | }); 36 | } 37 | } catch (error) { 38 | return res.status(403).send({ 39 | success: false, 40 | message: "Something went wrong", 41 | }); 42 | } 43 | }; 44 | -------------------------------------------------------------------------------- /src/Components/core/AboutPage/Stats.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | 4 | const Stats = [ 5 | {count: "5K", label: "Active Students"}, 6 | {count: "10+", label: "Mentors"}, 7 | {count: "200+", label: "Courses"}, 8 | {count: "50+", label: "Awards"}, 9 | ]; 10 | 11 | const StatsComponent = () => { 12 | return ( 13 |9 | {modalData.text1} 10 |
11 |12 | {modalData.text2} 13 |
14 |⚡ Course Upload Tips
14 |27 | Instructors from around the world teach millions of students on StudyNotion. We provide the tools and skills to teach what you love. 28 |
29 | 30 |Loading...
:( 39 |Total:
32 |₹ {total}
33 | 34 |{course?.courseName}
30 |By {course?.instructor?.firstName} {course?.instructor?.lastName}
31 |Rs. {course?.price}
37 |22 | {description1}{" "} 23 | 24 | {description2} 25 | 26 |
27 | {formType === "signup" ?
71 |
72 | Dear User,
74 |Thank you for registering with StudyNotion. To complete your registration, please use the following OTP 75 | (One-Time Password) to verify your account:
76 |This OTP is valid for 5 minutes. If you did not request this verification, please disregard this email. 78 | Once your account is verified, you will have access to our platform and its features.
79 |
60 |
61 | Hey ${name},
63 |Your password has been successfully updated for the email ${email}. 64 |
65 |If you did not request this password change, please contact us immediately to secure your account.
66 |1
41 |2
42 |3
43 |4
44 |5
45 |6
46 |7
47 |8
48 |9
49 |10
50 |11
51 |A verification code has been sent to you. Enter the code below
45 | 61 | 62 | 63 |Take a Demo
{item.title}
54 |40 | Learn to build anything you can imagine 41 |
42 | 43 |{element.Description}
50 |10
68 |Years of Experience
69 |250
73 |TYpe of Courses
74 |
72 |
73 | Dear ${name},
75 |You have successfully registered for the course "${courseName}". We 76 | are excited to have you as a participant!
77 |Please log in to your learning dashboard to access the course materials and start your learning journey. 78 |
79 | Go to Dashboard 80 |{course?.courseName}
26 | 27 | 28 |{course?.category?.name}
29 | 30 | 31 |₹ {course?.price}
50 | 56 |
72 |
75 | Dear ${name} ${lastname},
77 |78 | Thank you for purchasing the course. Your payment of ₹${amount} has been successfully received. 79 |
80 |81 | Your payment ID is ${paymentId} and your order ID is ${orderId}. 83 |
84 |29 | { 30 | !emailSent?("Have no fear. We'll email you instructions to reset your password. If you dont have access to your email we can try account recovery"):(`We have sent the reset email to ${email}`) 31 | } 32 |
33 | 45 |Back To Login
48 | 49 |Add Review
52 | 55 |{user?.firstName} {user?.lastName}
61 |Posting Publicly
62 |73 | {card.description} 74 |
75 |87 | {card.description} 88 |
89 |Publish Settings
72 | 84 |Home / Search / {searchQuery}
36 |Search Results for {searchQuery}
37 |38 | {searchResults?.length} results found for {searchQuery} 39 |
40 |No Results Found
73 |