Resillience is a team of IIT graduate mentors, and dedicated professionals with a single goal to provide personalized 1-on-1 coaching for IIT/NEET/MHC-CET Engineering Entrance Exam preparation. We believe: “Everyone can learn and excel but the ways will be different”
- Platform for teachers to conduct live online classes with students
- Online Examination System for teachers to upload subject/chapter-wise questions
- Interactive test platform for students and corresponding test result with analysis in the form of graphs
- Allowing parents to book free counselling session based on different services provided
- Dynamically allowing admin to create blogs for website
.
├── client/
├── ...
.
├── public/
├── src # Source files
| ├── components/ # Pages/Components
| | ├── AboutUs/
| | ├── Blogs/
| | ├── Career/
| | ├── ContactUs/
| | ├── Context/
| | ├── Features/
| | ├── Home/
| | ├── NavBar/
| | ├── Reducers/
| | ├── Tests/
| | ├── Title/
| | ├── Miscellaneous/
| | ├── Error.js
| | └── Faqs.js
| ├── App.js
| ├── index.js # React app starting point
| └── ...
└── ...
├── ...
| ├── config/
| ├── middleware/
| ├── models/
| ├── public/
| ├── routes/
| ├── views/
| ├── routes
| └── app.js # Nodejs starting point
├── ...