├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── enhancement.yml │ └── feature-request.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── App-React-Native ├── .gitignore ├── app.json ├── app │ ├── (tabs) │ │ ├── _layout.tsx │ │ ├── index.tsx │ │ └── profile.tsx │ ├── _layout.tsx │ ├── aiassist.tsx │ ├── counselling.tsx │ ├── elibrary.tsx │ ├── email.tsx │ ├── events.tsx │ ├── leaderboard.tsx │ ├── mentoring.tsx │ ├── quizzes.tsx │ ├── resources.tsx │ └── studentchat.tsx ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash-icon.png ├── components │ ├── Collapsible.tsx │ ├── ExternalLink.tsx │ ├── HapticTab.tsx │ ├── HelloWave.tsx │ ├── ParallaxScrollView.tsx │ ├── ThemedText.tsx │ ├── ThemedView.tsx │ └── ui │ │ ├── IconSymbol.ios.tsx │ │ ├── IconSymbol.tsx │ │ ├── TabBarBackground.ios.tsx │ │ └── TabBarBackground.tsx ├── constants │ ├── Colors.ts │ └── colors.js ├── hooks │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ └── useThemeColor.ts ├── navigation │ └── AppNavigator.js ├── package-lock.json ├── package.json ├── screens │ ├── HomeScreen.js │ └── ProfileScreen.tsx ├── scripts │ └── reset-project.js ├── services │ └── api.js ├── src │ └── @types │ │ └── react-native-progress.d.ts ├── tsconfig.json └── utils │ └── helpers.js ├── Backend-Node ├── .env.sample ├── .gitignore ├── .prettierignore ├── .prettierrc ├── package-lock.json ├── package.json ├── src │ ├── Constants.js │ ├── Controllers │ │ ├── dailyStudyGoal.controller.js │ │ └── user.controller.js │ ├── Middlewares │ │ ├── auth.middleware.js │ │ └── multer.middleware.js │ ├── Models │ │ ├── IMPLEMENTATION_SUMMARY.md │ │ ├── clgAdmin.model.js │ │ ├── club.model.js │ │ ├── college.model.js │ │ ├── dailyStudyGoal.model.js │ │ ├── department.model.js │ │ ├── eLibrary.model.js │ │ ├── event.model.js │ │ ├── experienceOrganization.model.js │ │ ├── index.js │ │ ├── professor.model.js │ │ ├── project.model.js │ │ ├── researchWork.model.js │ │ ├── resource.model.js │ │ ├── result.model.js │ │ ├── semester.model.js │ │ ├── student.model.js │ │ ├── subject.model.js │ │ └── user.model.js │ ├── Routes │ │ ├── dailyStudyGoal.routes.js │ │ └── user.routes.js │ ├── Utils │ │ ├── ApiError.js │ │ ├── ApiResponse.js │ │ ├── AsyncHandler.js │ │ └── Cloudinary.js │ ├── app.js │ ├── db │ │ └── index.js │ └── index.js └── vercel.json ├── CKsEdu.xlsx ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DATABASE_SCHEMA_DESIGN.md ├── Frontend ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ ├── logo.png │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── BackToTop.css │ ├── BackToTop.jsx │ ├── Config │ │ └── index.js │ ├── JSX │ │ ├── Components │ │ │ ├── AiAssist.jsx │ │ │ ├── Aurora.jsx │ │ │ ├── Compose.jsx │ │ │ ├── ComposeMail.jsx │ │ │ ├── EmailLayout.jsx │ │ │ ├── EmailVerification.jsx │ │ │ ├── Footer.jsx │ │ │ ├── Inbox.jsx │ │ │ ├── InboxList.jsx │ │ │ ├── Leaderboard.jsx │ │ │ ├── Login.jsx │ │ │ ├── Mentoring.jsx │ │ │ ├── MessageView.jsx │ │ │ ├── Navbar.jsx │ │ │ ├── NotFoundPage.jsx │ │ │ ├── Protection │ │ │ │ └── ProtectedRoute.jsx │ │ │ ├── QuizAttemptModal.jsx │ │ │ ├── Quizzes.jsx │ │ │ ├── ResetPassword.jsx │ │ │ ├── Resources.jsx │ │ │ ├── Sent.jsx │ │ │ ├── SentList.jsx │ │ │ ├── Sidebar.jsx │ │ │ ├── SignUp.jsx │ │ │ ├── StudentDashboard.jsx │ │ │ ├── StudentProfile.jsx │ │ │ └── dummyEmails.js │ │ ├── Context │ │ │ ├── AuthContext.js │ │ │ ├── AuthContextProvider.jsx │ │ │ └── ThemeContext.jsx │ │ └── Pages │ │ │ ├── CertificationsPage.jsx │ │ │ ├── CommunityPage.jsx │ │ │ ├── ContactUsPage.jsx │ │ │ ├── ElibraryPage.jsx │ │ │ ├── HelpCentrePage.jsx │ │ │ ├── LandingPage.jsx │ │ │ ├── LeaderboardPage.jsx │ │ │ ├── LoginPage.jsx │ │ │ ├── PrivacyPolicyPage.jsx │ │ │ ├── QuizzesPage.jsx │ │ │ ├── SignUpPage.jsx │ │ │ └── TermsOfServicePage.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx ├── temp.txt ├── tsconfig.json ├── vercel.json └── vite.config.js ├── README.md └── eslint.config.js /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/.gitignore -------------------------------------------------------------------------------- /App-React-Native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/.gitignore -------------------------------------------------------------------------------- /App-React-Native/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app.json -------------------------------------------------------------------------------- /App-React-Native/app/(tabs)/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/(tabs)/_layout.tsx -------------------------------------------------------------------------------- /App-React-Native/app/(tabs)/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/(tabs)/index.tsx -------------------------------------------------------------------------------- /App-React-Native/app/(tabs)/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/(tabs)/profile.tsx -------------------------------------------------------------------------------- /App-React-Native/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/_layout.tsx -------------------------------------------------------------------------------- /App-React-Native/app/aiassist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/aiassist.tsx -------------------------------------------------------------------------------- /App-React-Native/app/counselling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/counselling.tsx -------------------------------------------------------------------------------- /App-React-Native/app/elibrary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/elibrary.tsx -------------------------------------------------------------------------------- /App-React-Native/app/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/email.tsx -------------------------------------------------------------------------------- /App-React-Native/app/events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/events.tsx -------------------------------------------------------------------------------- /App-React-Native/app/leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/leaderboard.tsx -------------------------------------------------------------------------------- /App-React-Native/app/mentoring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/mentoring.tsx -------------------------------------------------------------------------------- /App-React-Native/app/quizzes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/quizzes.tsx -------------------------------------------------------------------------------- /App-React-Native/app/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/resources.tsx -------------------------------------------------------------------------------- /App-React-Native/app/studentchat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/app/studentchat.tsx -------------------------------------------------------------------------------- /App-React-Native/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /App-React-Native/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/favicon.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/icon.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/react-logo.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /App-React-Native/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/assets/images/splash-icon.png -------------------------------------------------------------------------------- /App-React-Native/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/Collapsible.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ExternalLink.tsx -------------------------------------------------------------------------------- /App-React-Native/components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/HapticTab.tsx -------------------------------------------------------------------------------- /App-React-Native/components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/HelloWave.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ThemedText.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ThemedView.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /App-React-Native/components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /App-React-Native/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/constants/Colors.ts -------------------------------------------------------------------------------- /App-React-Native/constants/colors.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App-React-Native/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export { useColorScheme } from 'react-native'; 2 | -------------------------------------------------------------------------------- /App-React-Native/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /App-React-Native/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /App-React-Native/navigation/AppNavigator.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App-React-Native/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/package-lock.json -------------------------------------------------------------------------------- /App-React-Native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/package.json -------------------------------------------------------------------------------- /App-React-Native/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/screens/HomeScreen.js -------------------------------------------------------------------------------- /App-React-Native/screens/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/screens/ProfileScreen.tsx -------------------------------------------------------------------------------- /App-React-Native/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/scripts/reset-project.js -------------------------------------------------------------------------------- /App-React-Native/services/api.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App-React-Native/src/@types/react-native-progress.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/src/@types/react-native-progress.d.ts -------------------------------------------------------------------------------- /App-React-Native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/App-React-Native/tsconfig.json -------------------------------------------------------------------------------- /App-React-Native/utils/helpers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Backend-Node/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/.env.sample -------------------------------------------------------------------------------- /Backend-Node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/.gitignore -------------------------------------------------------------------------------- /Backend-Node/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/.prettierignore -------------------------------------------------------------------------------- /Backend-Node/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/.prettierrc -------------------------------------------------------------------------------- /Backend-Node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/package-lock.json -------------------------------------------------------------------------------- /Backend-Node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/package.json -------------------------------------------------------------------------------- /Backend-Node/src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Constants.js -------------------------------------------------------------------------------- /Backend-Node/src/Controllers/dailyStudyGoal.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Controllers/dailyStudyGoal.controller.js -------------------------------------------------------------------------------- /Backend-Node/src/Controllers/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Controllers/user.controller.js -------------------------------------------------------------------------------- /Backend-Node/src/Middlewares/auth.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Middlewares/auth.middleware.js -------------------------------------------------------------------------------- /Backend-Node/src/Middlewares/multer.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Middlewares/multer.middleware.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/IMPLEMENTATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/IMPLEMENTATION_SUMMARY.md -------------------------------------------------------------------------------- /Backend-Node/src/Models/clgAdmin.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/clgAdmin.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/club.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/club.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/college.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/college.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/dailyStudyGoal.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/dailyStudyGoal.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/department.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/department.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/eLibrary.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/eLibrary.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/event.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/event.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/experienceOrganization.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/experienceOrganization.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/index.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/professor.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/professor.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/project.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/project.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/researchWork.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/researchWork.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/resource.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/resource.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/result.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/result.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/semester.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/semester.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/student.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/student.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/subject.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/subject.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Models/user.model.js -------------------------------------------------------------------------------- /Backend-Node/src/Routes/dailyStudyGoal.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Routes/dailyStudyGoal.routes.js -------------------------------------------------------------------------------- /Backend-Node/src/Routes/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Routes/user.routes.js -------------------------------------------------------------------------------- /Backend-Node/src/Utils/ApiError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Utils/ApiError.js -------------------------------------------------------------------------------- /Backend-Node/src/Utils/ApiResponse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Utils/ApiResponse.js -------------------------------------------------------------------------------- /Backend-Node/src/Utils/AsyncHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Utils/AsyncHandler.js -------------------------------------------------------------------------------- /Backend-Node/src/Utils/Cloudinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/Utils/Cloudinary.js -------------------------------------------------------------------------------- /Backend-Node/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/app.js -------------------------------------------------------------------------------- /Backend-Node/src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/db/index.js -------------------------------------------------------------------------------- /Backend-Node/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/src/index.js -------------------------------------------------------------------------------- /Backend-Node/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Backend-Node/vercel.json -------------------------------------------------------------------------------- /CKsEdu.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/CKsEdu.xlsx -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DATABASE_SCHEMA_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/DATABASE_SCHEMA_DESIGN.md -------------------------------------------------------------------------------- /Frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/.gitignore -------------------------------------------------------------------------------- /Frontend/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/.prettierignore -------------------------------------------------------------------------------- /Frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/.prettierrc -------------------------------------------------------------------------------- /Frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/README.md -------------------------------------------------------------------------------- /Frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/eslint.config.js -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/package-lock.json -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/public/logo.png -------------------------------------------------------------------------------- /Frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/public/vite.svg -------------------------------------------------------------------------------- /Frontend/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/App.jsx -------------------------------------------------------------------------------- /Frontend/src/BackToTop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/BackToTop.css -------------------------------------------------------------------------------- /Frontend/src/BackToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/BackToTop.jsx -------------------------------------------------------------------------------- /Frontend/src/Config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/Config/index.js -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/AiAssist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/AiAssist.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Aurora.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Aurora.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Compose.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Compose.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/ComposeMail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/ComposeMail.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/EmailLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/EmailLayout.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/EmailVerification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/EmailVerification.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Footer.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Inbox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Inbox.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/InboxList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/InboxList.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Leaderboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Leaderboard.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Login.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Mentoring.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Mentoring.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/MessageView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/MessageView.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Navbar.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/NotFoundPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/NotFoundPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Protection/ProtectedRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Protection/ProtectedRoute.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/QuizAttemptModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/QuizAttemptModal.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Quizzes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Quizzes.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/ResetPassword.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Resources.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Resources.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Sent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Sent.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/SentList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/SentList.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/Sidebar.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/SignUp.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/StudentDashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/StudentDashboard.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/StudentProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/StudentProfile.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Components/dummyEmails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Components/dummyEmails.js -------------------------------------------------------------------------------- /Frontend/src/JSX/Context/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Context/AuthContext.js -------------------------------------------------------------------------------- /Frontend/src/JSX/Context/AuthContextProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Context/AuthContextProvider.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Context/ThemeContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Context/ThemeContext.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/CertificationsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/CertificationsPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/CommunityPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/CommunityPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/ContactUsPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/ContactUsPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/ElibraryPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/ElibraryPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/HelpCentrePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/HelpCentrePage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/LandingPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/LandingPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/LeaderboardPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/LeaderboardPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/LoginPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/PrivacyPolicyPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/PrivacyPolicyPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/QuizzesPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/QuizzesPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/SignUpPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/SignUpPage.jsx -------------------------------------------------------------------------------- /Frontend/src/JSX/Pages/TermsOfServicePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/JSX/Pages/TermsOfServicePage.jsx -------------------------------------------------------------------------------- /Frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/assets/react.svg -------------------------------------------------------------------------------- /Frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/index.css -------------------------------------------------------------------------------- /Frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/src/main.jsx -------------------------------------------------------------------------------- /Frontend/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/temp.txt -------------------------------------------------------------------------------- /Frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/tsconfig.json -------------------------------------------------------------------------------- /Frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/vercel.json -------------------------------------------------------------------------------- /Frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/Frontend/vite.config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KrishChothani/CKsEdu/HEAD/eslint.config.js --------------------------------------------------------------------------------