├── admin ├── .DS_Store ├── .env ├── .gitignore ├── README.md ├── app │ ├── .DS_Store │ ├── Provider.tsx │ ├── admin │ │ ├── .DS_Store │ │ ├── categories │ │ │ └── page.tsx │ │ ├── courses-analytics │ │ │ └── page.tsx │ │ ├── courses │ │ │ └── page.tsx │ │ ├── create-course │ │ │ └── page.tsx │ │ ├── edit-course │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── faq │ │ │ └── page.tsx │ │ ├── hero │ │ │ └── page.tsx │ │ ├── invoices │ │ │ └── page.tsx │ │ ├── orders-analytics │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── team │ │ │ └── page.tsx │ │ ├── users-analytics │ │ │ └── page.tsx │ │ └── users │ │ │ └── page.tsx │ ├── components │ │ ├── .DS_Store │ │ ├── Admin │ │ │ ├── Analytics │ │ │ │ ├── CourseAnalytics.tsx │ │ │ │ ├── OrdersAnalytics.tsx │ │ │ │ └── UserAnalytics.tsx │ │ │ ├── Course │ │ │ │ ├── AllCourses.tsx │ │ │ │ ├── CourseContent.tsx │ │ │ │ ├── CourseData.tsx │ │ │ │ ├── CourseInformation.tsx │ │ │ │ ├── CourseOptions.tsx │ │ │ │ ├── CoursePreview.tsx │ │ │ │ ├── CreateCourse.tsx │ │ │ │ └── EditCourse.tsx │ │ │ ├── Customization │ │ │ │ ├── EditCategories.tsx │ │ │ │ ├── EditFaq.tsx │ │ │ │ └── EditHero.tsx │ │ │ ├── DashboardHeader.tsx │ │ │ ├── DashboardHero.tsx │ │ │ ├── Order │ │ │ │ └── AllInvoices.tsx │ │ │ ├── Users │ │ │ │ └── AllUsers.tsx │ │ │ ├── Widgets │ │ │ │ └── DashboardWidgets.tsx │ │ │ └── sidebar │ │ │ │ ├── AdminSidebar.tsx │ │ │ │ └── Icon.tsx │ │ ├── Auth │ │ │ ├── Login.tsx │ │ │ ├── SignUp.tsx │ │ │ └── Verification.tsx │ │ ├── Course │ │ │ ├── CourseCard.tsx │ │ │ ├── CourseContent.tsx │ │ │ ├── CourseContentList.tsx │ │ │ ├── CourseContentMedia.tsx │ │ │ ├── CourseDetails.tsx │ │ │ └── CourseDetailsPage.tsx │ │ └── Loader │ │ │ ├── Loader.css │ │ │ └── Loader.tsx │ ├── favicon.ico │ ├── globals.css │ ├── hooks │ │ ├── adminProtected.tsx │ │ ├── useProtected.tsx │ │ └── userAuth.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── styles │ │ └── style.ts │ └── utils │ │ ├── CoursePlayer.tsx │ │ ├── CustomModal.tsx │ │ ├── Heading.tsx │ │ ├── NavItems.tsx │ │ ├── Ratings.tsx │ │ ├── ThemeSwitcher.tsx │ │ └── theme-provider.tsx ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ └── api │ │ └── auth │ │ └── [...nextauth].ts ├── postcss.config.js ├── public │ ├── .DS_Store │ ├── assests │ │ ├── .DS_Store │ │ ├── avatar.png │ │ ├── banner-img-1.png │ │ ├── business-img.png │ │ ├── client-1.jpg │ │ ├── client-2.jpg │ │ └── client-3.jpg │ ├── next.svg │ └── vercel.svg ├── redux │ ├── .DS_Store │ └── features │ │ ├── .DS_Store │ │ ├── analytics │ │ └── analyticsApi.ts │ │ ├── api │ │ └── apiSlice.ts │ │ ├── auth │ │ ├── authApi.ts │ │ └── authSlice.ts │ │ ├── courses │ │ └── coursesApi.ts │ │ ├── layout │ │ └── layoutApi.ts │ │ ├── notifications │ │ └── notificationsApi.ts │ │ ├── orders │ │ └── ordersApi.ts │ │ ├── store.ts │ │ └── user │ │ └── userApi.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock ├── client ├── .env ├── .gitignore ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── betafier │ │ │ │ └── app │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_image.png │ │ │ ├── drawable │ │ │ ├── rn_edit_text_material.xml │ │ │ └── splashscreen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── react-settings-plugin │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── expo │ │ │ └── plugins │ │ │ └── ReactSettingsPlugin.kt │ └── settings.gradle ├── app.json ├── app │ ├── (routes) │ │ ├── cart │ │ │ └── index.tsx │ │ ├── course-access │ │ │ └── index.tsx │ │ ├── course-details │ │ │ └── index.tsx │ │ ├── enrolled-courses │ │ │ └── index.tsx │ │ ├── forgot-password │ │ │ └── index.tsx │ │ ├── login │ │ │ └── index.tsx │ │ ├── onboarding │ │ │ └── index.tsx │ │ ├── profile-details │ │ │ └── index.tsx │ │ ├── sign-up │ │ │ └── index.tsx │ │ ├── verifyAccount │ │ │ └── index.tsx │ │ └── welcome-intro │ │ │ └── index.tsx │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── courses │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── profile │ │ │ └── index.tsx │ │ └── search │ │ │ └── index.tsx │ ├── _layout.tsx │ └── index.tsx ├── assets │ ├── animation │ │ └── Online data Manager.json │ ├── banner │ │ ├── 1.jpg │ │ ├── 2.webp │ │ ├── 3.webp │ │ └── 4.webp │ ├── empty_cart.png │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ ├── icons │ │ ├── BookBookmark.png │ │ ├── HouseSimple.png │ │ ├── MapPin.png │ │ ├── ShoppingCart.png │ │ ├── User.png │ │ ├── arts_and_design.png │ │ ├── business.png │ │ ├── certificate.png │ │ ├── data_science.png │ │ ├── development.png │ │ ├── finance.png │ │ ├── heasth_and_fitness.png │ │ ├── lesson.png │ │ ├── management.png │ │ ├── marketing.png │ │ ├── music.png │ │ ├── photography.png │ │ ├── search.png │ │ ├── seat.png │ │ └── star.png │ ├── images │ │ ├── account_confirmation.png │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── logo.png │ ├── onboarding │ │ ├── Welcome_02.jpg │ │ ├── Welcome_03.jpg │ │ ├── banner-img-1.png │ │ ├── circule.png │ │ ├── intro_1.png │ │ ├── intro_2.png │ │ ├── intro_3.png │ │ ├── logo.png │ │ ├── shape.png │ │ ├── shape_2.png │ │ ├── shape_3.png │ │ ├── shape_4.png │ │ ├── shape_5.png │ │ ├── shape_6.png │ │ ├── shape_8.png │ │ ├── shape_9.png │ │ ├── welcome_01.jpg │ │ └── welcome_background.png │ └── sign-in │ │ ├── sign_in.png │ │ └── signup.png ├── babel.config.js ├── components │ ├── button │ │ └── button.tsx │ ├── cards │ │ ├── course.card.tsx │ │ ├── question.card.tsx │ │ └── review.card.tsx │ ├── common │ │ └── search.input.tsx │ ├── courses │ │ ├── all.courses.tsx │ │ └── course.lesson.tsx │ ├── header │ │ └── header.tsx │ ├── home │ │ └── home.banner.slider.tsx │ └── loader │ │ └── loader.tsx ├── constants │ ├── Colors.ts │ └── constans.tsx ├── eas.json ├── hooks │ └── auth │ │ └── useUser.tsx ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── Betafier.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Betafier.xcscheme │ ├── Betafier.xcworkspace │ │ └── contents.xcworkspacedata │ ├── Betafier │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Betafier-Bridging-Header.h │ │ ├── Betafier.entitlements │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── SplashScreen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image.png │ │ │ └── SplashScreenBackground.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── image.png │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── SplashScreen.storyboard │ │ ├── Supporting │ │ │ └── Expo.plist │ │ ├── main.m │ │ └── noop-file.swift │ ├── Podfile │ ├── Podfile.lock │ └── Podfile.properties.json ├── package-lock.json ├── package.json ├── screens │ ├── auth │ │ ├── login │ │ │ └── login.screen.tsx │ │ ├── signup │ │ │ └── signup.screen.tsx │ │ └── verify │ │ │ └── verify.account.tsx │ ├── cart │ │ └── cart.screen.tsx │ ├── courses │ │ ├── course.access.tsx │ │ └── courses.screen.tsx │ ├── home │ │ ├── course │ │ │ └── course.details.screen.tsx │ │ └── home.screen.tsx │ ├── onboarding │ │ └── onboarding.screen.tsx │ ├── profile │ │ └── profile.screen.tsx │ ├── search │ │ └── search.screen.tsx │ └── welcome │ │ └── welcome.intro.tsx ├── styles │ ├── common │ │ └── common.styles.tsx │ ├── home │ │ └── banner.style.tsx │ └── onboarding │ │ └── onboard.tsx ├── tsconfig.json ├── types │ ├── courses.d.ts │ ├── global.d.ts │ └── react.native.animated.loader.d.ts └── utils │ ├── ratings.tsx │ └── uri.tsx └── server ├── .DS_Store ├── .gitignore ├── @types └── custom.d.ts ├── Procfile ├── app.ts ├── build ├── app.js ├── controllers │ ├── analytics.controller.js │ ├── course.controller.js │ ├── layout.controller.js │ ├── notification.controller.js │ ├── order.controller.js │ └── user.controller.js ├── mails │ ├── activation-mail.ejs │ ├── order-confirmation.ejs │ └── question-reply.ejs ├── middleware │ ├── auth.js │ ├── catchAsyncErrors.js │ └── error.js ├── models │ ├── course.model.js │ ├── layout.model.js │ ├── notification.Model.js │ ├── order.Model.js │ └── user.model.js ├── routes │ ├── analytics.route.js │ ├── course.route.js │ ├── layout.route.js │ ├── notification.route.js │ ├── order.route.js │ └── user.route.js ├── server.js ├── services │ ├── course.service.js │ ├── order.service.js │ └── user.service.js ├── socketServer.js └── utils │ ├── ErrorHandler.js │ ├── analytics.generator.js │ ├── db.js │ ├── jwt.js │ ├── redis.js │ └── sendMail.js ├── controllers ├── analytics.controller.ts ├── course.controller.ts ├── layout.controller.ts ├── notification.controller.ts ├── order.controller.ts └── user.controller.ts ├── mails ├── activation-mail.ejs ├── order-confirmation.ejs └── question-reply.ejs ├── middleware ├── auth.ts ├── catchAsyncErrors.ts └── error.ts ├── models ├── course.model.ts ├── layout.model.ts ├── notification.Model.ts ├── order.Model.ts └── user.model.ts ├── package-lock.json ├── package.json ├── routes ├── analytics.route.ts ├── course.route.ts ├── layout.route.ts ├── notification.route.ts ├── order.route.ts └── user.route.ts ├── server.ts ├── services ├── course.service.ts ├── order.service.ts └── user.service.ts ├── socketServer.ts ├── tsconfig.json └── utils ├── ErrorHandler.ts ├── analytics.generator.ts ├── db.ts ├── jwt.ts ├── redis.ts └── sendMail.ts /admin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/.DS_Store -------------------------------------------------------------------------------- /admin/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/.env -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/.DS_Store -------------------------------------------------------------------------------- /admin/app/Provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/Provider.tsx -------------------------------------------------------------------------------- /admin/app/admin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/.DS_Store -------------------------------------------------------------------------------- /admin/app/admin/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/categories/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/courses-analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/courses-analytics/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/courses/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/courses/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/create-course/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/create-course/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/edit-course/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/edit-course/[id]/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/faq/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/faq/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/hero/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/hero/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/invoices/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/invoices/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/orders-analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/orders-analytics/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/team/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/users-analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/users-analytics/page.tsx -------------------------------------------------------------------------------- /admin/app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/admin/users/page.tsx -------------------------------------------------------------------------------- /admin/app/components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/.DS_Store -------------------------------------------------------------------------------- /admin/app/components/Admin/Analytics/CourseAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Analytics/CourseAnalytics.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Analytics/OrdersAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Analytics/OrdersAnalytics.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Analytics/UserAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Analytics/UserAnalytics.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/AllCourses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/AllCourses.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CourseContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CourseContent.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CourseData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CourseData.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CourseInformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CourseInformation.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CourseOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CourseOptions.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CoursePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CoursePreview.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/CreateCourse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/CreateCourse.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Course/EditCourse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Course/EditCourse.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Customization/EditCategories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Customization/EditCategories.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Customization/EditFaq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Customization/EditFaq.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Customization/EditHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Customization/EditHero.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/DashboardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/DashboardHeader.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/DashboardHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/DashboardHero.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Order/AllInvoices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Order/AllInvoices.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Users/AllUsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Users/AllUsers.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/Widgets/DashboardWidgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/Widgets/DashboardWidgets.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/sidebar/AdminSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/sidebar/AdminSidebar.tsx -------------------------------------------------------------------------------- /admin/app/components/Admin/sidebar/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Admin/sidebar/Icon.tsx -------------------------------------------------------------------------------- /admin/app/components/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Auth/Login.tsx -------------------------------------------------------------------------------- /admin/app/components/Auth/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Auth/SignUp.tsx -------------------------------------------------------------------------------- /admin/app/components/Auth/Verification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Auth/Verification.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseCard.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseContent.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseContentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseContentList.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseContentMedia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseContentMedia.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseDetails.tsx -------------------------------------------------------------------------------- /admin/app/components/Course/CourseDetailsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Course/CourseDetailsPage.tsx -------------------------------------------------------------------------------- /admin/app/components/Loader/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Loader/Loader.css -------------------------------------------------------------------------------- /admin/app/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /admin/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/favicon.ico -------------------------------------------------------------------------------- /admin/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/globals.css -------------------------------------------------------------------------------- /admin/app/hooks/adminProtected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/hooks/adminProtected.tsx -------------------------------------------------------------------------------- /admin/app/hooks/useProtected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/hooks/useProtected.tsx -------------------------------------------------------------------------------- /admin/app/hooks/userAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/hooks/userAuth.tsx -------------------------------------------------------------------------------- /admin/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/layout.tsx -------------------------------------------------------------------------------- /admin/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/page.tsx -------------------------------------------------------------------------------- /admin/app/styles/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/styles/style.ts -------------------------------------------------------------------------------- /admin/app/utils/CoursePlayer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/CoursePlayer.tsx -------------------------------------------------------------------------------- /admin/app/utils/CustomModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/CustomModal.tsx -------------------------------------------------------------------------------- /admin/app/utils/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/Heading.tsx -------------------------------------------------------------------------------- /admin/app/utils/NavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/NavItems.tsx -------------------------------------------------------------------------------- /admin/app/utils/Ratings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/Ratings.tsx -------------------------------------------------------------------------------- /admin/app/utils/ThemeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/ThemeSwitcher.tsx -------------------------------------------------------------------------------- /admin/app/utils/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/app/utils/theme-provider.tsx -------------------------------------------------------------------------------- /admin/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/next-env.d.ts -------------------------------------------------------------------------------- /admin/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/next.config.js -------------------------------------------------------------------------------- /admin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/package-lock.json -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/pages/_app.tsx -------------------------------------------------------------------------------- /admin/pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /admin/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/postcss.config.js -------------------------------------------------------------------------------- /admin/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/.DS_Store -------------------------------------------------------------------------------- /admin/public/assests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/.DS_Store -------------------------------------------------------------------------------- /admin/public/assests/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/avatar.png -------------------------------------------------------------------------------- /admin/public/assests/banner-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/banner-img-1.png -------------------------------------------------------------------------------- /admin/public/assests/business-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/business-img.png -------------------------------------------------------------------------------- /admin/public/assests/client-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/client-1.jpg -------------------------------------------------------------------------------- /admin/public/assests/client-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/client-2.jpg -------------------------------------------------------------------------------- /admin/public/assests/client-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/assests/client-3.jpg -------------------------------------------------------------------------------- /admin/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/next.svg -------------------------------------------------------------------------------- /admin/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/public/vercel.svg -------------------------------------------------------------------------------- /admin/redux/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/.DS_Store -------------------------------------------------------------------------------- /admin/redux/features/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/.DS_Store -------------------------------------------------------------------------------- /admin/redux/features/analytics/analyticsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/analytics/analyticsApi.ts -------------------------------------------------------------------------------- /admin/redux/features/api/apiSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/api/apiSlice.ts -------------------------------------------------------------------------------- /admin/redux/features/auth/authApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/auth/authApi.ts -------------------------------------------------------------------------------- /admin/redux/features/auth/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/auth/authSlice.ts -------------------------------------------------------------------------------- /admin/redux/features/courses/coursesApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/courses/coursesApi.ts -------------------------------------------------------------------------------- /admin/redux/features/layout/layoutApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/layout/layoutApi.ts -------------------------------------------------------------------------------- /admin/redux/features/notifications/notificationsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/notifications/notificationsApi.ts -------------------------------------------------------------------------------- /admin/redux/features/orders/ordersApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/orders/ordersApi.ts -------------------------------------------------------------------------------- /admin/redux/features/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/store.ts -------------------------------------------------------------------------------- /admin/redux/features/user/userApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/redux/features/user/userApi.ts -------------------------------------------------------------------------------- /admin/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/tailwind.config.ts -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/admin/yarn.lock -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/.env -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/.gitignore -------------------------------------------------------------------------------- /client/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/build.gradle -------------------------------------------------------------------------------- /client/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/debug.keystore -------------------------------------------------------------------------------- /client/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /client/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/betafier/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/java/com/betafier/app/MainActivity.kt -------------------------------------------------------------------------------- /client/android/app/src/main/java/com/betafier/app/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/java/com/betafier/app/MainApplication.kt -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /client/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /client/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /client/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/build.gradle -------------------------------------------------------------------------------- /client/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/gradle.properties -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /client/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /client/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/gradlew -------------------------------------------------------------------------------- /client/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/gradlew.bat -------------------------------------------------------------------------------- /client/android/react-settings-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/react-settings-plugin/build.gradle.kts -------------------------------------------------------------------------------- /client/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/react-settings-plugin/src/main/kotlin/expo/plugins/ReactSettingsPlugin.kt -------------------------------------------------------------------------------- /client/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/android/settings.gradle -------------------------------------------------------------------------------- /client/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app.json -------------------------------------------------------------------------------- /client/app/(routes)/cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/cart/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/course-access/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/course-access/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/course-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/course-details/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/enrolled-courses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/enrolled-courses/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/forgot-password/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/forgot-password/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/login/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/onboarding/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/onboarding/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/profile-details/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/profile-details/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/sign-up/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/sign-up/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/verifyAccount/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/verifyAccount/index.tsx -------------------------------------------------------------------------------- /client/app/(routes)/welcome-intro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(routes)/welcome-intro/index.tsx -------------------------------------------------------------------------------- /client/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /client/app/(tabs)/courses/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(tabs)/courses/index.tsx -------------------------------------------------------------------------------- /client/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /client/app/(tabs)/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(tabs)/profile/index.tsx -------------------------------------------------------------------------------- /client/app/(tabs)/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/(tabs)/search/index.tsx -------------------------------------------------------------------------------- /client/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/_layout.tsx -------------------------------------------------------------------------------- /client/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/app/index.tsx -------------------------------------------------------------------------------- /client/assets/animation/Online data Manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/animation/Online data Manager.json -------------------------------------------------------------------------------- /client/assets/banner/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/banner/1.jpg -------------------------------------------------------------------------------- /client/assets/banner/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/banner/2.webp -------------------------------------------------------------------------------- /client/assets/banner/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/banner/3.webp -------------------------------------------------------------------------------- /client/assets/banner/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/banner/4.webp -------------------------------------------------------------------------------- /client/assets/empty_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/empty_cart.png -------------------------------------------------------------------------------- /client/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /client/assets/icons/BookBookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/BookBookmark.png -------------------------------------------------------------------------------- /client/assets/icons/HouseSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/HouseSimple.png -------------------------------------------------------------------------------- /client/assets/icons/MapPin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/MapPin.png -------------------------------------------------------------------------------- /client/assets/icons/ShoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/ShoppingCart.png -------------------------------------------------------------------------------- /client/assets/icons/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/User.png -------------------------------------------------------------------------------- /client/assets/icons/arts_and_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/arts_and_design.png -------------------------------------------------------------------------------- /client/assets/icons/business.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/business.png -------------------------------------------------------------------------------- /client/assets/icons/certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/certificate.png -------------------------------------------------------------------------------- /client/assets/icons/data_science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/data_science.png -------------------------------------------------------------------------------- /client/assets/icons/development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/development.png -------------------------------------------------------------------------------- /client/assets/icons/finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/finance.png -------------------------------------------------------------------------------- /client/assets/icons/heasth_and_fitness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/heasth_and_fitness.png -------------------------------------------------------------------------------- /client/assets/icons/lesson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/lesson.png -------------------------------------------------------------------------------- /client/assets/icons/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/management.png -------------------------------------------------------------------------------- /client/assets/icons/marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/marketing.png -------------------------------------------------------------------------------- /client/assets/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/music.png -------------------------------------------------------------------------------- /client/assets/icons/photography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/photography.png -------------------------------------------------------------------------------- /client/assets/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/search.png -------------------------------------------------------------------------------- /client/assets/icons/seat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/seat.png -------------------------------------------------------------------------------- /client/assets/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/icons/star.png -------------------------------------------------------------------------------- /client/assets/images/account_confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/images/account_confirmation.png -------------------------------------------------------------------------------- /client/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /client/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/images/favicon.png -------------------------------------------------------------------------------- /client/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/images/icon.png -------------------------------------------------------------------------------- /client/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/images/splash.png -------------------------------------------------------------------------------- /client/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/logo.png -------------------------------------------------------------------------------- /client/assets/onboarding/Welcome_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/Welcome_02.jpg -------------------------------------------------------------------------------- /client/assets/onboarding/Welcome_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/Welcome_03.jpg -------------------------------------------------------------------------------- /client/assets/onboarding/banner-img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/banner-img-1.png -------------------------------------------------------------------------------- /client/assets/onboarding/circule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/circule.png -------------------------------------------------------------------------------- /client/assets/onboarding/intro_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/intro_1.png -------------------------------------------------------------------------------- /client/assets/onboarding/intro_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/intro_2.png -------------------------------------------------------------------------------- /client/assets/onboarding/intro_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/intro_3.png -------------------------------------------------------------------------------- /client/assets/onboarding/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/logo.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_2.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_3.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_4.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_5.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_6.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_8.png -------------------------------------------------------------------------------- /client/assets/onboarding/shape_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/shape_9.png -------------------------------------------------------------------------------- /client/assets/onboarding/welcome_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/welcome_01.jpg -------------------------------------------------------------------------------- /client/assets/onboarding/welcome_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/onboarding/welcome_background.png -------------------------------------------------------------------------------- /client/assets/sign-in/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/sign-in/sign_in.png -------------------------------------------------------------------------------- /client/assets/sign-in/signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/assets/sign-in/signup.png -------------------------------------------------------------------------------- /client/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/babel.config.js -------------------------------------------------------------------------------- /client/components/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/button/button.tsx -------------------------------------------------------------------------------- /client/components/cards/course.card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/cards/course.card.tsx -------------------------------------------------------------------------------- /client/components/cards/question.card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/cards/question.card.tsx -------------------------------------------------------------------------------- /client/components/cards/review.card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/cards/review.card.tsx -------------------------------------------------------------------------------- /client/components/common/search.input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/common/search.input.tsx -------------------------------------------------------------------------------- /client/components/courses/all.courses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/courses/all.courses.tsx -------------------------------------------------------------------------------- /client/components/courses/course.lesson.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/courses/course.lesson.tsx -------------------------------------------------------------------------------- /client/components/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/header/header.tsx -------------------------------------------------------------------------------- /client/components/home/home.banner.slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/home/home.banner.slider.tsx -------------------------------------------------------------------------------- /client/components/loader/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/components/loader/loader.tsx -------------------------------------------------------------------------------- /client/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/constants/Colors.ts -------------------------------------------------------------------------------- /client/constants/constans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/constants/constans.tsx -------------------------------------------------------------------------------- /client/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/eas.json -------------------------------------------------------------------------------- /client/hooks/auth/useUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/hooks/auth/useUser.tsx -------------------------------------------------------------------------------- /client/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/.gitignore -------------------------------------------------------------------------------- /client/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/.xcode.env -------------------------------------------------------------------------------- /client/ios/Betafier.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /client/ios/Betafier.xcodeproj/xcshareddata/xcschemes/Betafier.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier.xcodeproj/xcshareddata/xcschemes/Betafier.xcscheme -------------------------------------------------------------------------------- /client/ios/Betafier.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /client/ios/Betafier/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/AppDelegate.h -------------------------------------------------------------------------------- /client/ios/Betafier/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/AppDelegate.mm -------------------------------------------------------------------------------- /client/ios/Betafier/Betafier-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Betafier-Bridging-Header.h -------------------------------------------------------------------------------- /client/ios/Betafier/Betafier.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Betafier.entitlements -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /client/ios/Betafier/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /client/ios/Betafier/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Info.plist -------------------------------------------------------------------------------- /client/ios/Betafier/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /client/ios/Betafier/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/SplashScreen.storyboard -------------------------------------------------------------------------------- /client/ios/Betafier/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/Supporting/Expo.plist -------------------------------------------------------------------------------- /client/ios/Betafier/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/main.m -------------------------------------------------------------------------------- /client/ios/Betafier/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Betafier/noop-file.swift -------------------------------------------------------------------------------- /client/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Podfile -------------------------------------------------------------------------------- /client/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Podfile.lock -------------------------------------------------------------------------------- /client/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/ios/Podfile.properties.json -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/package.json -------------------------------------------------------------------------------- /client/screens/auth/login/login.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/auth/login/login.screen.tsx -------------------------------------------------------------------------------- /client/screens/auth/signup/signup.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/auth/signup/signup.screen.tsx -------------------------------------------------------------------------------- /client/screens/auth/verify/verify.account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/auth/verify/verify.account.tsx -------------------------------------------------------------------------------- /client/screens/cart/cart.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/cart/cart.screen.tsx -------------------------------------------------------------------------------- /client/screens/courses/course.access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/courses/course.access.tsx -------------------------------------------------------------------------------- /client/screens/courses/courses.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/courses/courses.screen.tsx -------------------------------------------------------------------------------- /client/screens/home/course/course.details.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/home/course/course.details.screen.tsx -------------------------------------------------------------------------------- /client/screens/home/home.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/home/home.screen.tsx -------------------------------------------------------------------------------- /client/screens/onboarding/onboarding.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/onboarding/onboarding.screen.tsx -------------------------------------------------------------------------------- /client/screens/profile/profile.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/profile/profile.screen.tsx -------------------------------------------------------------------------------- /client/screens/search/search.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/search/search.screen.tsx -------------------------------------------------------------------------------- /client/screens/welcome/welcome.intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/screens/welcome/welcome.intro.tsx -------------------------------------------------------------------------------- /client/styles/common/common.styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/styles/common/common.styles.tsx -------------------------------------------------------------------------------- /client/styles/home/banner.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/styles/home/banner.style.tsx -------------------------------------------------------------------------------- /client/styles/onboarding/onboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/styles/onboarding/onboard.tsx -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/types/courses.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/types/courses.d.ts -------------------------------------------------------------------------------- /client/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/types/global.d.ts -------------------------------------------------------------------------------- /client/types/react.native.animated.loader.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-animated-loader'; 2 | -------------------------------------------------------------------------------- /client/utils/ratings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/client/utils/ratings.tsx -------------------------------------------------------------------------------- /client/utils/uri.tsx: -------------------------------------------------------------------------------- 1 | export const SERVER_URI = "https://lms-mobile-app-alde.onrender.com/api/v1"; 2 | -------------------------------------------------------------------------------- /server/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/.DS_Store -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /server/@types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/@types/custom.d.ts -------------------------------------------------------------------------------- /server/Procfile: -------------------------------------------------------------------------------- 1 | web: node build/server.js 2 | -------------------------------------------------------------------------------- /server/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/app.ts -------------------------------------------------------------------------------- /server/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/app.js -------------------------------------------------------------------------------- /server/build/controllers/analytics.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/analytics.controller.js -------------------------------------------------------------------------------- /server/build/controllers/course.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/course.controller.js -------------------------------------------------------------------------------- /server/build/controllers/layout.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/layout.controller.js -------------------------------------------------------------------------------- /server/build/controllers/notification.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/notification.controller.js -------------------------------------------------------------------------------- /server/build/controllers/order.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/order.controller.js -------------------------------------------------------------------------------- /server/build/controllers/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/controllers/user.controller.js -------------------------------------------------------------------------------- /server/build/mails/activation-mail.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/mails/activation-mail.ejs -------------------------------------------------------------------------------- /server/build/mails/order-confirmation.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/mails/order-confirmation.ejs -------------------------------------------------------------------------------- /server/build/mails/question-reply.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/mails/question-reply.ejs -------------------------------------------------------------------------------- /server/build/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/middleware/auth.js -------------------------------------------------------------------------------- /server/build/middleware/catchAsyncErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/middleware/catchAsyncErrors.js -------------------------------------------------------------------------------- /server/build/middleware/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/middleware/error.js -------------------------------------------------------------------------------- /server/build/models/course.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/models/course.model.js -------------------------------------------------------------------------------- /server/build/models/layout.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/models/layout.model.js -------------------------------------------------------------------------------- /server/build/models/notification.Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/models/notification.Model.js -------------------------------------------------------------------------------- /server/build/models/order.Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/models/order.Model.js -------------------------------------------------------------------------------- /server/build/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/models/user.model.js -------------------------------------------------------------------------------- /server/build/routes/analytics.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/analytics.route.js -------------------------------------------------------------------------------- /server/build/routes/course.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/course.route.js -------------------------------------------------------------------------------- /server/build/routes/layout.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/layout.route.js -------------------------------------------------------------------------------- /server/build/routes/notification.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/notification.route.js -------------------------------------------------------------------------------- /server/build/routes/order.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/order.route.js -------------------------------------------------------------------------------- /server/build/routes/user.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/routes/user.route.js -------------------------------------------------------------------------------- /server/build/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/server.js -------------------------------------------------------------------------------- /server/build/services/course.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/services/course.service.js -------------------------------------------------------------------------------- /server/build/services/order.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/services/order.service.js -------------------------------------------------------------------------------- /server/build/services/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/services/user.service.js -------------------------------------------------------------------------------- /server/build/socketServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/socketServer.js -------------------------------------------------------------------------------- /server/build/utils/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/ErrorHandler.js -------------------------------------------------------------------------------- /server/build/utils/analytics.generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/analytics.generator.js -------------------------------------------------------------------------------- /server/build/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/db.js -------------------------------------------------------------------------------- /server/build/utils/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/jwt.js -------------------------------------------------------------------------------- /server/build/utils/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/redis.js -------------------------------------------------------------------------------- /server/build/utils/sendMail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/build/utils/sendMail.js -------------------------------------------------------------------------------- /server/controllers/analytics.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/analytics.controller.ts -------------------------------------------------------------------------------- /server/controllers/course.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/course.controller.ts -------------------------------------------------------------------------------- /server/controllers/layout.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/layout.controller.ts -------------------------------------------------------------------------------- /server/controllers/notification.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/notification.controller.ts -------------------------------------------------------------------------------- /server/controllers/order.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/order.controller.ts -------------------------------------------------------------------------------- /server/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/controllers/user.controller.ts -------------------------------------------------------------------------------- /server/mails/activation-mail.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/mails/activation-mail.ejs -------------------------------------------------------------------------------- /server/mails/order-confirmation.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/mails/order-confirmation.ejs -------------------------------------------------------------------------------- /server/mails/question-reply.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/mails/question-reply.ejs -------------------------------------------------------------------------------- /server/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/middleware/auth.ts -------------------------------------------------------------------------------- /server/middleware/catchAsyncErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/middleware/catchAsyncErrors.ts -------------------------------------------------------------------------------- /server/middleware/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/middleware/error.ts -------------------------------------------------------------------------------- /server/models/course.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/models/course.model.ts -------------------------------------------------------------------------------- /server/models/layout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/models/layout.model.ts -------------------------------------------------------------------------------- /server/models/notification.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/models/notification.Model.ts -------------------------------------------------------------------------------- /server/models/order.Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/models/order.Model.ts -------------------------------------------------------------------------------- /server/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/models/user.model.ts -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/analytics.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/analytics.route.ts -------------------------------------------------------------------------------- /server/routes/course.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/course.route.ts -------------------------------------------------------------------------------- /server/routes/layout.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/layout.route.ts -------------------------------------------------------------------------------- /server/routes/notification.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/notification.route.ts -------------------------------------------------------------------------------- /server/routes/order.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/order.route.ts -------------------------------------------------------------------------------- /server/routes/user.route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/routes/user.route.ts -------------------------------------------------------------------------------- /server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/server.ts -------------------------------------------------------------------------------- /server/services/course.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/services/course.service.ts -------------------------------------------------------------------------------- /server/services/order.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/services/order.service.ts -------------------------------------------------------------------------------- /server/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/services/user.service.ts -------------------------------------------------------------------------------- /server/socketServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/socketServer.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/utils/ErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/ErrorHandler.ts -------------------------------------------------------------------------------- /server/utils/analytics.generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/analytics.generator.ts -------------------------------------------------------------------------------- /server/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/db.ts -------------------------------------------------------------------------------- /server/utils/jwt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/jwt.ts -------------------------------------------------------------------------------- /server/utils/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/redis.ts -------------------------------------------------------------------------------- /server/utils/sendMail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriarsajeeb/Lms-Mobile-App/HEAD/server/utils/sendMail.ts --------------------------------------------------------------------------------