├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .idea ├── modules.xml ├── sarthi.iml ├── vcs.xml └── workspace.xml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── client ├── .env ├── .eslintrc.cjs ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ ├── Front.png │ │ ├── Front1.jpg │ │ ├── Front1.png │ │ ├── Main.png │ │ ├── Saarthi-transformed1.png │ │ ├── Saarthi2.png │ │ ├── Stack.jpeg │ │ ├── Stack2.jpeg │ │ ├── Stack3.jpeg │ │ ├── back.gif │ │ ├── boxback.jpg │ │ ├── err.json │ │ ├── img1.png │ │ ├── logo.png │ │ ├── main.jpg │ │ ├── pic1.jpg │ │ ├── pic2.png │ │ ├── pic3.png │ │ ├── pic4.jpg │ │ ├── pic5.jpg │ │ ├── pre.json │ │ ├── react.svg │ │ ├── sheild-dynamic-clay.png │ │ └── translate-icon.png │ ├── components │ │ ├── Basic │ │ │ ├── Banner.jsx │ │ │ ├── Box.jsx │ │ │ ├── Faq.jsx │ │ │ ├── Footer.jsx │ │ │ ├── Form.jsx │ │ │ ├── Input.jsx │ │ │ ├── Logo.jsx │ │ │ ├── Marquee.jsx │ │ │ ├── Navbar.jsx │ │ │ ├── Overview.jsx │ │ │ ├── PageNotFound.jsx │ │ │ ├── Results.jsx │ │ │ └── TranslateToggle.jsx │ │ ├── Landing │ │ │ └── HomePage.jsx │ │ ├── api │ │ │ ├── basicapi.js │ │ │ ├── expertapi.js │ │ │ └── studentapi.js │ │ ├── auth │ │ │ ├── Landing.jsx │ │ │ ├── expert │ │ │ │ ├── ExpertForget.jsx │ │ │ │ ├── ExpertLogin.jsx │ │ │ │ ├── ExpertSignup.jsx │ │ │ │ └── OtpVerify-expert.jsx │ │ │ └── student │ │ │ │ ├── OtpVerify-student.jsx │ │ │ │ ├── StudentForget.jsx │ │ │ │ ├── StudentLogin.jsx │ │ │ │ └── StudentSignup.jsx │ │ ├── chat │ │ │ ├── ChatParticipant.jsx │ │ │ ├── Chats.jsx │ │ │ ├── Message.jsx │ │ │ └── MessageContainer.jsx │ │ ├── context │ │ │ └── theme.jsx │ │ ├── home │ │ │ ├── ExpertHome.jsx │ │ │ ├── StudentHome.jsx │ │ │ └── studentHome │ │ │ │ ├── ExpertCard.jsx │ │ │ │ └── Filter.jsx │ │ ├── meetings │ │ │ └── Button.jsx │ │ ├── preloader │ │ │ └── Preloader.jsx │ │ ├── profile │ │ │ └── ExpertProfile.jsx │ │ ├── providers │ │ │ └── ThemeProvider.jsx │ │ ├── test │ │ │ ├── App.test.jsx │ │ │ ├── Footer.test.jsx │ │ │ └── Navbar.test.jsx │ │ └── utils │ │ │ ├── setup.js │ │ │ └── test-utils.jsx │ ├── index.css │ ├── main.jsx │ └── redux │ │ ├── expertSlice.js │ │ ├── store.js │ │ └── studentSlice.js ├── tailwind.config.js └── vite.config.js └── server ├── .gitignore ├── config └── connection.js ├── controllers ├── auth-expert.js ├── chat-controller.js ├── expert-controller.js ├── message-controller.js ├── otp-controller.js ├── payment-controller.js ├── student-controller.js └── user-controller.js ├── dist ├── bundle.js ├── bundle.js.LICENSE.txt └── images │ ├── acceptCall.png │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── camera.png │ ├── cameraOff.png │ ├── chatButton.png │ ├── chatMessage.png │ ├── check.png │ ├── closeButton.png │ ├── copy.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── hangUp.png │ ├── merged-logo.png │ ├── mic.png │ ├── micOff.png │ ├── mstile-150x150.png │ ├── paste.png │ ├── pause.png │ ├── recordingStart.png │ ├── rejectCall.png │ ├── resume.png │ ├── safari-pinned-tab.svg │ ├── screenShare.png │ ├── sendMessageButton.png │ ├── site.webmanifest │ ├── smile.png │ ├── stopRecording.png │ ├── userAvatar.png │ ├── videoButton.png │ └── videoChatDashboard.png ├── index.js ├── middleware ├── isAuthenticated.js └── multer.js ├── models ├── chat-model.js ├── confirmationCode-model.js ├── expert-model.js ├── message-model.js ├── otp-model.js ├── student-model.js └── user-model.js ├── package-lock.json ├── package.json ├── public ├── index.html └── temp │ └── .gitkeep ├── routes ├── chatRoute.js ├── expertRoute.js ├── messageRoute.js ├── otpRoute.js ├── paymentRoute.js ├── studentRoute.js └── userRoute.js ├── socket └── socket.js ├── src ├── css │ ├── _base.scss │ ├── _components.scss │ ├── _layout.scss │ └── style.scss ├── images │ ├── acceptCall.png │ ├── android-chrome-192x192.png │ ├── android-chrome-384x384.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── camera.png │ ├── cameraOff.png │ ├── chatButton.png │ ├── chatMessage.png │ ├── check.png │ ├── closeButton.png │ ├── copy.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── hangUp.png │ ├── merged-logo.png │ ├── mic.png │ ├── micOff.png │ ├── mstile-150x150.png │ ├── paste.png │ ├── pause.png │ ├── recordingStart.png │ ├── rejectCall.png │ ├── resume.png │ ├── safari-pinned-tab.svg │ ├── screenShare.png │ ├── sendMessageButton.png │ ├── site.webmanifest │ ├── smile.png │ ├── stopRecording.png │ ├── userAvatar.png │ ├── videoButton.png │ └── videoChatDashboard.png └── js │ ├── constants.js │ ├── elements.js │ ├── main.js │ ├── recordingUtils.js │ ├── store.js │ ├── strangerUtils.js │ ├── ui.js │ ├── webRTCHandler.js │ └── wss.js ├── utils ├── cloudinary.js ├── emailTemplates.js └── mailer.js ├── webSocket └── webSocket.js ├── webpack.config.js └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sarthi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/.idea/sarthi.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/README.md -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/.env -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/.eslintrc.cjs -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/public/vite.svg -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/assets/Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Front.png -------------------------------------------------------------------------------- /client/src/assets/Front1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Front1.jpg -------------------------------------------------------------------------------- /client/src/assets/Front1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Front1.png -------------------------------------------------------------------------------- /client/src/assets/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Main.png -------------------------------------------------------------------------------- /client/src/assets/Saarthi-transformed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Saarthi-transformed1.png -------------------------------------------------------------------------------- /client/src/assets/Saarthi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Saarthi2.png -------------------------------------------------------------------------------- /client/src/assets/Stack.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Stack.jpeg -------------------------------------------------------------------------------- /client/src/assets/Stack2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Stack2.jpeg -------------------------------------------------------------------------------- /client/src/assets/Stack3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/Stack3.jpeg -------------------------------------------------------------------------------- /client/src/assets/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/back.gif -------------------------------------------------------------------------------- /client/src/assets/boxback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/boxback.jpg -------------------------------------------------------------------------------- /client/src/assets/err.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/err.json -------------------------------------------------------------------------------- /client/src/assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/img1.png -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/assets/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/main.jpg -------------------------------------------------------------------------------- /client/src/assets/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pic1.jpg -------------------------------------------------------------------------------- /client/src/assets/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pic2.png -------------------------------------------------------------------------------- /client/src/assets/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pic3.png -------------------------------------------------------------------------------- /client/src/assets/pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pic4.jpg -------------------------------------------------------------------------------- /client/src/assets/pic5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pic5.jpg -------------------------------------------------------------------------------- /client/src/assets/pre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/pre.json -------------------------------------------------------------------------------- /client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/react.svg -------------------------------------------------------------------------------- /client/src/assets/sheild-dynamic-clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/sheild-dynamic-clay.png -------------------------------------------------------------------------------- /client/src/assets/translate-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/assets/translate-icon.png -------------------------------------------------------------------------------- /client/src/components/Basic/Banner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Banner.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Box.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Box.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Faq.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Faq.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Footer.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Form.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Input.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Logo.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Marquee.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Marquee.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Navbar.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Overview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Overview.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/PageNotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/PageNotFound.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/Results.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/Results.jsx -------------------------------------------------------------------------------- /client/src/components/Basic/TranslateToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Basic/TranslateToggle.jsx -------------------------------------------------------------------------------- /client/src/components/Landing/HomePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/Landing/HomePage.jsx -------------------------------------------------------------------------------- /client/src/components/api/basicapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/api/basicapi.js -------------------------------------------------------------------------------- /client/src/components/api/expertapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/api/expertapi.js -------------------------------------------------------------------------------- /client/src/components/api/studentapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/api/studentapi.js -------------------------------------------------------------------------------- /client/src/components/auth/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/Landing.jsx -------------------------------------------------------------------------------- /client/src/components/auth/expert/ExpertForget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/expert/ExpertForget.jsx -------------------------------------------------------------------------------- /client/src/components/auth/expert/ExpertLogin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/expert/ExpertLogin.jsx -------------------------------------------------------------------------------- /client/src/components/auth/expert/ExpertSignup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/expert/ExpertSignup.jsx -------------------------------------------------------------------------------- /client/src/components/auth/expert/OtpVerify-expert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/expert/OtpVerify-expert.jsx -------------------------------------------------------------------------------- /client/src/components/auth/student/OtpVerify-student.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/student/OtpVerify-student.jsx -------------------------------------------------------------------------------- /client/src/components/auth/student/StudentForget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/student/StudentForget.jsx -------------------------------------------------------------------------------- /client/src/components/auth/student/StudentLogin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/student/StudentLogin.jsx -------------------------------------------------------------------------------- /client/src/components/auth/student/StudentSignup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/auth/student/StudentSignup.jsx -------------------------------------------------------------------------------- /client/src/components/chat/ChatParticipant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/chat/ChatParticipant.jsx -------------------------------------------------------------------------------- /client/src/components/chat/Chats.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/chat/Chats.jsx -------------------------------------------------------------------------------- /client/src/components/chat/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/chat/Message.jsx -------------------------------------------------------------------------------- /client/src/components/chat/MessageContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/chat/MessageContainer.jsx -------------------------------------------------------------------------------- /client/src/components/context/theme.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/context/theme.jsx -------------------------------------------------------------------------------- /client/src/components/home/ExpertHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/home/ExpertHome.jsx -------------------------------------------------------------------------------- /client/src/components/home/StudentHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/home/StudentHome.jsx -------------------------------------------------------------------------------- /client/src/components/home/studentHome/ExpertCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/home/studentHome/ExpertCard.jsx -------------------------------------------------------------------------------- /client/src/components/home/studentHome/Filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/home/studentHome/Filter.jsx -------------------------------------------------------------------------------- /client/src/components/meetings/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/meetings/Button.jsx -------------------------------------------------------------------------------- /client/src/components/preloader/Preloader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/preloader/Preloader.jsx -------------------------------------------------------------------------------- /client/src/components/profile/ExpertProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/profile/ExpertProfile.jsx -------------------------------------------------------------------------------- /client/src/components/providers/ThemeProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/providers/ThemeProvider.jsx -------------------------------------------------------------------------------- /client/src/components/test/App.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/test/App.test.jsx -------------------------------------------------------------------------------- /client/src/components/test/Footer.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/test/Footer.test.jsx -------------------------------------------------------------------------------- /client/src/components/test/Navbar.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/test/Navbar.test.jsx -------------------------------------------------------------------------------- /client/src/components/utils/setup.js: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom' -------------------------------------------------------------------------------- /client/src/components/utils/test-utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/components/utils/test-utils.jsx -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/redux/expertSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/redux/expertSlice.js -------------------------------------------------------------------------------- /client/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/redux/store.js -------------------------------------------------------------------------------- /client/src/redux/studentSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/src/redux/studentSlice.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/client/vite.config.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env -------------------------------------------------------------------------------- /server/config/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/config/connection.js -------------------------------------------------------------------------------- /server/controllers/auth-expert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/auth-expert.js -------------------------------------------------------------------------------- /server/controllers/chat-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/chat-controller.js -------------------------------------------------------------------------------- /server/controllers/expert-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/expert-controller.js -------------------------------------------------------------------------------- /server/controllers/message-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/message-controller.js -------------------------------------------------------------------------------- /server/controllers/otp-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/otp-controller.js -------------------------------------------------------------------------------- /server/controllers/payment-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/payment-controller.js -------------------------------------------------------------------------------- /server/controllers/student-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/student-controller.js -------------------------------------------------------------------------------- /server/controllers/user-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/controllers/user-controller.js -------------------------------------------------------------------------------- /server/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/bundle.js -------------------------------------------------------------------------------- /server/dist/bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /server/dist/images/acceptCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/acceptCall.png -------------------------------------------------------------------------------- /server/dist/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /server/dist/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /server/dist/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/apple-touch-icon.png -------------------------------------------------------------------------------- /server/dist/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/browserconfig.xml -------------------------------------------------------------------------------- /server/dist/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/camera.png -------------------------------------------------------------------------------- /server/dist/images/cameraOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/cameraOff.png -------------------------------------------------------------------------------- /server/dist/images/chatButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/chatButton.png -------------------------------------------------------------------------------- /server/dist/images/chatMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/chatMessage.png -------------------------------------------------------------------------------- /server/dist/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/check.png -------------------------------------------------------------------------------- /server/dist/images/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/closeButton.png -------------------------------------------------------------------------------- /server/dist/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/copy.png -------------------------------------------------------------------------------- /server/dist/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/favicon-16x16.png -------------------------------------------------------------------------------- /server/dist/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/favicon-32x32.png -------------------------------------------------------------------------------- /server/dist/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/favicon.ico -------------------------------------------------------------------------------- /server/dist/images/hangUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/hangUp.png -------------------------------------------------------------------------------- /server/dist/images/merged-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/merged-logo.png -------------------------------------------------------------------------------- /server/dist/images/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/mic.png -------------------------------------------------------------------------------- /server/dist/images/micOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/micOff.png -------------------------------------------------------------------------------- /server/dist/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/mstile-150x150.png -------------------------------------------------------------------------------- /server/dist/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/paste.png -------------------------------------------------------------------------------- /server/dist/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/pause.png -------------------------------------------------------------------------------- /server/dist/images/recordingStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/recordingStart.png -------------------------------------------------------------------------------- /server/dist/images/rejectCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/rejectCall.png -------------------------------------------------------------------------------- /server/dist/images/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/resume.png -------------------------------------------------------------------------------- /server/dist/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /server/dist/images/screenShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/screenShare.png -------------------------------------------------------------------------------- /server/dist/images/sendMessageButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/sendMessageButton.png -------------------------------------------------------------------------------- /server/dist/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/site.webmanifest -------------------------------------------------------------------------------- /server/dist/images/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/smile.png -------------------------------------------------------------------------------- /server/dist/images/stopRecording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/stopRecording.png -------------------------------------------------------------------------------- /server/dist/images/userAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/userAvatar.png -------------------------------------------------------------------------------- /server/dist/images/videoButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/videoButton.png -------------------------------------------------------------------------------- /server/dist/images/videoChatDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/dist/images/videoChatDashboard.png -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/index.js -------------------------------------------------------------------------------- /server/middleware/isAuthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/middleware/isAuthenticated.js -------------------------------------------------------------------------------- /server/middleware/multer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/middleware/multer.js -------------------------------------------------------------------------------- /server/models/chat-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/chat-model.js -------------------------------------------------------------------------------- /server/models/confirmationCode-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/confirmationCode-model.js -------------------------------------------------------------------------------- /server/models/expert-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/expert-model.js -------------------------------------------------------------------------------- /server/models/message-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/message-model.js -------------------------------------------------------------------------------- /server/models/otp-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/otp-model.js -------------------------------------------------------------------------------- /server/models/student-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/student-model.js -------------------------------------------------------------------------------- /server/models/user-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/models/user-model.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/package.json -------------------------------------------------------------------------------- /server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/public/index.html -------------------------------------------------------------------------------- /server/public/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/routes/chatRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/chatRoute.js -------------------------------------------------------------------------------- /server/routes/expertRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/expertRoute.js -------------------------------------------------------------------------------- /server/routes/messageRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/messageRoute.js -------------------------------------------------------------------------------- /server/routes/otpRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/otpRoute.js -------------------------------------------------------------------------------- /server/routes/paymentRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/paymentRoute.js -------------------------------------------------------------------------------- /server/routes/studentRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/studentRoute.js -------------------------------------------------------------------------------- /server/routes/userRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/routes/userRoute.js -------------------------------------------------------------------------------- /server/socket/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/socket/socket.js -------------------------------------------------------------------------------- /server/src/css/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/css/_base.scss -------------------------------------------------------------------------------- /server/src/css/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/css/_components.scss -------------------------------------------------------------------------------- /server/src/css/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/css/_layout.scss -------------------------------------------------------------------------------- /server/src/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/css/style.scss -------------------------------------------------------------------------------- /server/src/images/acceptCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/acceptCall.png -------------------------------------------------------------------------------- /server/src/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /server/src/images/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/android-chrome-384x384.png -------------------------------------------------------------------------------- /server/src/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/apple-touch-icon.png -------------------------------------------------------------------------------- /server/src/images/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/browserconfig.xml -------------------------------------------------------------------------------- /server/src/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/camera.png -------------------------------------------------------------------------------- /server/src/images/cameraOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/cameraOff.png -------------------------------------------------------------------------------- /server/src/images/chatButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/chatButton.png -------------------------------------------------------------------------------- /server/src/images/chatMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/chatMessage.png -------------------------------------------------------------------------------- /server/src/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/check.png -------------------------------------------------------------------------------- /server/src/images/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/closeButton.png -------------------------------------------------------------------------------- /server/src/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/copy.png -------------------------------------------------------------------------------- /server/src/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/favicon-16x16.png -------------------------------------------------------------------------------- /server/src/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/favicon-32x32.png -------------------------------------------------------------------------------- /server/src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/favicon.ico -------------------------------------------------------------------------------- /server/src/images/hangUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/hangUp.png -------------------------------------------------------------------------------- /server/src/images/merged-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/merged-logo.png -------------------------------------------------------------------------------- /server/src/images/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/mic.png -------------------------------------------------------------------------------- /server/src/images/micOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/micOff.png -------------------------------------------------------------------------------- /server/src/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/mstile-150x150.png -------------------------------------------------------------------------------- /server/src/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/paste.png -------------------------------------------------------------------------------- /server/src/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/pause.png -------------------------------------------------------------------------------- /server/src/images/recordingStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/recordingStart.png -------------------------------------------------------------------------------- /server/src/images/rejectCall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/rejectCall.png -------------------------------------------------------------------------------- /server/src/images/resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/resume.png -------------------------------------------------------------------------------- /server/src/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/safari-pinned-tab.svg -------------------------------------------------------------------------------- /server/src/images/screenShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/screenShare.png -------------------------------------------------------------------------------- /server/src/images/sendMessageButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/sendMessageButton.png -------------------------------------------------------------------------------- /server/src/images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/site.webmanifest -------------------------------------------------------------------------------- /server/src/images/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/smile.png -------------------------------------------------------------------------------- /server/src/images/stopRecording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/stopRecording.png -------------------------------------------------------------------------------- /server/src/images/userAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/userAvatar.png -------------------------------------------------------------------------------- /server/src/images/videoButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/videoButton.png -------------------------------------------------------------------------------- /server/src/images/videoChatDashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/images/videoChatDashboard.png -------------------------------------------------------------------------------- /server/src/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/constants.js -------------------------------------------------------------------------------- /server/src/js/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/elements.js -------------------------------------------------------------------------------- /server/src/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/main.js -------------------------------------------------------------------------------- /server/src/js/recordingUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/recordingUtils.js -------------------------------------------------------------------------------- /server/src/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/store.js -------------------------------------------------------------------------------- /server/src/js/strangerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/strangerUtils.js -------------------------------------------------------------------------------- /server/src/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/ui.js -------------------------------------------------------------------------------- /server/src/js/webRTCHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/webRTCHandler.js -------------------------------------------------------------------------------- /server/src/js/wss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/src/js/wss.js -------------------------------------------------------------------------------- /server/utils/cloudinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/utils/cloudinary.js -------------------------------------------------------------------------------- /server/utils/emailTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/utils/emailTemplates.js -------------------------------------------------------------------------------- /server/utils/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/utils/mailer.js -------------------------------------------------------------------------------- /server/webSocket/webSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/webSocket/webSocket.js -------------------------------------------------------------------------------- /server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/webpack.config.js -------------------------------------------------------------------------------- /server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapsesamarth/ElevateHub/HEAD/server/yarn.lock --------------------------------------------------------------------------------