├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── .gitignore ├── .nvmrc ├── BreastCancerPrediction ├── .ipynb_checkpoints │ └── BreastCancerPrediction-checkpoint.ipynb ├── BreastCancerPrediction.ipynb └── cancer.csv ├── Cardiovascular_Disease_Prediction ├── Cardiovascular_Disease.ipynb └── cardio_train.csv ├── HLD_MediCare.md ├── README.md ├── RemoteBackend ├── .gitattributes ├── Procfile ├── README.md ├── api │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── admin.cpython-39.pyc │ │ ├── apps.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── views.cpython-39.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── manage.py ├── mediCare │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── urls.cpython-39.pyc │ │ └── wsgi.cpython-39.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── ml_models │ ├── heart_model.pkl │ ├── kidney_model.pkl │ └── requirements.txt ├── package-lock.json ├── requirements.txt └── runtime.txt ├── UI_IMPROVEMENTS_SUMMARY.md ├── backend ├── .gitignore ├── README.md ├── core │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── doctors │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_doctor_specialization.py │ │ ├── 0003_alter_doctor_specialization.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── requirements.txt ├── images ├── img1.jpeg ├── img2.jpeg ├── img3.jpeg ├── img4.jpeg ├── img5.jpeg ├── img6.jpeg ├── img7.jpeg └── logo.jpeg ├── package.json ├── postcss.config.js ├── public ├── assets │ └── java │ │ └── Java.js ├── index.html └── robots.txt ├── src ├── App.css ├── App.js ├── assets │ ├── .DS_Store │ ├── DoctorProfile.jpg │ ├── doctor │ │ ├── doctor.jpg │ │ ├── doctor2.jpg │ │ ├── doctor3.jpg │ │ ├── lady doctor.jpg │ │ └── lady doctor3.jpg │ ├── home │ │ ├── slider1.png │ │ ├── slider2.png │ │ ├── slider3.png │ │ ├── slider4.png │ │ ├── slider5.png │ │ └── slider6.png │ ├── images │ │ ├── BreastCancer.jpg │ │ ├── Diabetiesimg.jpg │ │ ├── DoctorProfile.jpg │ │ ├── HeartNew.jpg │ │ ├── age.svg │ │ ├── breastcancerNew.jpg │ │ ├── chatbot.png │ │ ├── diabetesNew.jpg │ │ ├── fevicon.png │ │ ├── fitness.jpg │ │ ├── heartimg.jpg │ │ ├── height.svg │ │ ├── kidneyNew.jpg │ │ ├── kidneyimg.png │ │ ├── scale.svg │ │ └── water.svg │ ├── mapbox-icon.png │ └── notFound.svg ├── components │ ├── Chatbot │ │ ├── Chatbot.js │ │ └── Funfacts.js │ ├── DiseasePred │ │ ├── BreastCancerPred │ │ │ └── BreastCancerForm.js │ │ ├── Cards │ │ │ └── DisPredicCard.js │ │ ├── Data.js │ │ ├── DiabetesPred │ │ │ └── DiabetesForm.js │ │ ├── DiseaseDetection.js │ │ ├── DiseaseReport.css │ │ ├── DiseaseReport.js │ │ ├── HeartDiseasePred │ │ │ ├── HeartDiseaseForm.js │ │ │ └── static │ │ │ │ ├── HeartDiseaseForm.css │ │ │ │ ├── heart.jpg │ │ │ │ └── main.css │ │ ├── KidneyDiseasePred │ │ │ ├── KidneyDiseaseForm.js │ │ │ └── static │ │ │ │ ├── kidney.jpg │ │ │ │ └── main.css │ │ └── index.css │ ├── Doctor │ │ ├── Details.js │ │ ├── Doctor.js │ │ └── DoctorForm.js │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.jsx │ ├── Health │ │ └── Health.js │ ├── Home │ │ ├── BodyCard.jsx │ │ ├── HomePageBody.jsx │ │ ├── HomePageBodyHi.jsx │ │ ├── HomePageHeader.jsx │ │ ├── HomePageSlider.jsx │ │ ├── HomePageSliderHi.jsx │ │ ├── Homepage.jsx │ │ ├── HomepageHeadHi.jsx │ │ ├── Homepagehi.jsx │ │ └── News │ │ │ └── News.js │ ├── NavBar │ │ └── Navbar.js │ ├── NotfoundPage │ │ └── index.jsx │ └── card │ │ └── cards.html ├── index.css ├── index.js └── styles │ ├── Chatbot.css │ ├── Details.css │ ├── DiseaseDetection.css │ ├── DoctorForm.css │ ├── Doctors.css │ ├── HomeEn.css │ ├── Map.css │ ├── Navbar.css │ ├── News.css │ ├── cards.css │ ├── notFoundPageStyle.css │ └── w3.css ├── tailwind.config.js └── vercel.json /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.x -------------------------------------------------------------------------------- /BreastCancerPrediction/.ipynb_checkpoints/BreastCancerPrediction-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/BreastCancerPrediction/.ipynb_checkpoints/BreastCancerPrediction-checkpoint.ipynb -------------------------------------------------------------------------------- /BreastCancerPrediction/BreastCancerPrediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/BreastCancerPrediction/BreastCancerPrediction.ipynb -------------------------------------------------------------------------------- /BreastCancerPrediction/cancer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/BreastCancerPrediction/cancer.csv -------------------------------------------------------------------------------- /Cardiovascular_Disease_Prediction/Cardiovascular_Disease.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/Cardiovascular_Disease_Prediction/Cardiovascular_Disease.ipynb -------------------------------------------------------------------------------- /Cardiovascular_Disease_Prediction/cardio_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/Cardiovascular_Disease_Prediction/cardio_train.csv -------------------------------------------------------------------------------- /HLD_MediCare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/HLD_MediCare.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/README.md -------------------------------------------------------------------------------- /RemoteBackend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/.gitattributes -------------------------------------------------------------------------------- /RemoteBackend/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/Procfile -------------------------------------------------------------------------------- /RemoteBackend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/README.md -------------------------------------------------------------------------------- /RemoteBackend/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/admin.py -------------------------------------------------------------------------------- /RemoteBackend/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/apps.py -------------------------------------------------------------------------------- /RemoteBackend/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemoteBackend/api/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/models.py -------------------------------------------------------------------------------- /RemoteBackend/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/serializers.py -------------------------------------------------------------------------------- /RemoteBackend/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/tests.py -------------------------------------------------------------------------------- /RemoteBackend/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/urls.py -------------------------------------------------------------------------------- /RemoteBackend/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/api/views.py -------------------------------------------------------------------------------- /RemoteBackend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/db.sqlite3 -------------------------------------------------------------------------------- /RemoteBackend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/manage.py -------------------------------------------------------------------------------- /RemoteBackend/mediCare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemoteBackend/mediCare/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/mediCare/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/mediCare/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/mediCare/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /RemoteBackend/mediCare/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/asgi.py -------------------------------------------------------------------------------- /RemoteBackend/mediCare/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/settings.py -------------------------------------------------------------------------------- /RemoteBackend/mediCare/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/urls.py -------------------------------------------------------------------------------- /RemoteBackend/mediCare/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/mediCare/wsgi.py -------------------------------------------------------------------------------- /RemoteBackend/ml_models/heart_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/ml_models/heart_model.pkl -------------------------------------------------------------------------------- /RemoteBackend/ml_models/kidney_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/ml_models/kidney_model.pkl -------------------------------------------------------------------------------- /RemoteBackend/ml_models/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/ml_models/requirements.txt -------------------------------------------------------------------------------- /RemoteBackend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/package-lock.json -------------------------------------------------------------------------------- /RemoteBackend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/RemoteBackend/requirements.txt -------------------------------------------------------------------------------- /RemoteBackend/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 -------------------------------------------------------------------------------- /UI_IMPROVEMENTS_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/UI_IMPROVEMENTS_SUMMARY.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/core/asgi.py -------------------------------------------------------------------------------- /backend/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/core/settings.py -------------------------------------------------------------------------------- /backend/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/core/urls.py -------------------------------------------------------------------------------- /backend/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/core/wsgi.py -------------------------------------------------------------------------------- /backend/doctors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/doctors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/admin.py -------------------------------------------------------------------------------- /backend/doctors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/apps.py -------------------------------------------------------------------------------- /backend/doctors/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/doctors/migrations/0002_alter_doctor_specialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/migrations/0002_alter_doctor_specialization.py -------------------------------------------------------------------------------- /backend/doctors/migrations/0003_alter_doctor_specialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/migrations/0003_alter_doctor_specialization.py -------------------------------------------------------------------------------- /backend/doctors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/doctors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/models.py -------------------------------------------------------------------------------- /backend/doctors/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/serializers.py -------------------------------------------------------------------------------- /backend/doctors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/tests.py -------------------------------------------------------------------------------- /backend/doctors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/urls.py -------------------------------------------------------------------------------- /backend/doctors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/doctors/views.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /images/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img1.jpeg -------------------------------------------------------------------------------- /images/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img2.jpeg -------------------------------------------------------------------------------- /images/img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img3.jpeg -------------------------------------------------------------------------------- /images/img4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img4.jpeg -------------------------------------------------------------------------------- /images/img5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img5.jpeg -------------------------------------------------------------------------------- /images/img6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img6.jpeg -------------------------------------------------------------------------------- /images/img7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/img7.jpeg -------------------------------------------------------------------------------- /images/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/images/logo.jpeg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/java/Java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/public/assets/java/Java.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/App.js -------------------------------------------------------------------------------- /src/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/.DS_Store -------------------------------------------------------------------------------- /src/assets/DoctorProfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/DoctorProfile.jpg -------------------------------------------------------------------------------- /src/assets/doctor/doctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/doctor/doctor.jpg -------------------------------------------------------------------------------- /src/assets/doctor/doctor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/doctor/doctor2.jpg -------------------------------------------------------------------------------- /src/assets/doctor/doctor3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/doctor/doctor3.jpg -------------------------------------------------------------------------------- /src/assets/doctor/lady doctor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/doctor/lady doctor.jpg -------------------------------------------------------------------------------- /src/assets/doctor/lady doctor3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/doctor/lady doctor3.jpg -------------------------------------------------------------------------------- /src/assets/home/slider1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider1.png -------------------------------------------------------------------------------- /src/assets/home/slider2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider2.png -------------------------------------------------------------------------------- /src/assets/home/slider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider3.png -------------------------------------------------------------------------------- /src/assets/home/slider4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider4.png -------------------------------------------------------------------------------- /src/assets/home/slider5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider5.png -------------------------------------------------------------------------------- /src/assets/home/slider6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/home/slider6.png -------------------------------------------------------------------------------- /src/assets/images/BreastCancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/BreastCancer.jpg -------------------------------------------------------------------------------- /src/assets/images/Diabetiesimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/Diabetiesimg.jpg -------------------------------------------------------------------------------- /src/assets/images/DoctorProfile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/DoctorProfile.jpg -------------------------------------------------------------------------------- /src/assets/images/HeartNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/HeartNew.jpg -------------------------------------------------------------------------------- /src/assets/images/age.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/age.svg -------------------------------------------------------------------------------- /src/assets/images/breastcancerNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/breastcancerNew.jpg -------------------------------------------------------------------------------- /src/assets/images/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/chatbot.png -------------------------------------------------------------------------------- /src/assets/images/diabetesNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/diabetesNew.jpg -------------------------------------------------------------------------------- /src/assets/images/fevicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/fevicon.png -------------------------------------------------------------------------------- /src/assets/images/fitness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/fitness.jpg -------------------------------------------------------------------------------- /src/assets/images/heartimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/heartimg.jpg -------------------------------------------------------------------------------- /src/assets/images/height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/height.svg -------------------------------------------------------------------------------- /src/assets/images/kidneyNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/kidneyNew.jpg -------------------------------------------------------------------------------- /src/assets/images/kidneyimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/kidneyimg.png -------------------------------------------------------------------------------- /src/assets/images/scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/scale.svg -------------------------------------------------------------------------------- /src/assets/images/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/images/water.svg -------------------------------------------------------------------------------- /src/assets/mapbox-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/mapbox-icon.png -------------------------------------------------------------------------------- /src/assets/notFound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/assets/notFound.svg -------------------------------------------------------------------------------- /src/components/Chatbot/Chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Chatbot/Chatbot.js -------------------------------------------------------------------------------- /src/components/Chatbot/Funfacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Chatbot/Funfacts.js -------------------------------------------------------------------------------- /src/components/DiseasePred/BreastCancerPred/BreastCancerForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/BreastCancerPred/BreastCancerForm.js -------------------------------------------------------------------------------- /src/components/DiseasePred/Cards/DisPredicCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/Cards/DisPredicCard.js -------------------------------------------------------------------------------- /src/components/DiseasePred/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/Data.js -------------------------------------------------------------------------------- /src/components/DiseasePred/DiabetesPred/DiabetesForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/DiabetesPred/DiabetesForm.js -------------------------------------------------------------------------------- /src/components/DiseasePred/DiseaseDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/DiseaseDetection.js -------------------------------------------------------------------------------- /src/components/DiseasePred/DiseaseReport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/DiseaseReport.css -------------------------------------------------------------------------------- /src/components/DiseasePred/DiseaseReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/DiseaseReport.js -------------------------------------------------------------------------------- /src/components/DiseasePred/HeartDiseasePred/HeartDiseaseForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/HeartDiseasePred/HeartDiseaseForm.js -------------------------------------------------------------------------------- /src/components/DiseasePred/HeartDiseasePred/static/HeartDiseaseForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/HeartDiseasePred/static/HeartDiseaseForm.css -------------------------------------------------------------------------------- /src/components/DiseasePred/HeartDiseasePred/static/heart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/HeartDiseasePred/static/heart.jpg -------------------------------------------------------------------------------- /src/components/DiseasePred/HeartDiseasePred/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/HeartDiseasePred/static/main.css -------------------------------------------------------------------------------- /src/components/DiseasePred/KidneyDiseasePred/KidneyDiseaseForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/KidneyDiseasePred/KidneyDiseaseForm.js -------------------------------------------------------------------------------- /src/components/DiseasePred/KidneyDiseasePred/static/kidney.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/KidneyDiseasePred/static/kidney.jpg -------------------------------------------------------------------------------- /src/components/DiseasePred/KidneyDiseasePred/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/KidneyDiseasePred/static/main.css -------------------------------------------------------------------------------- /src/components/DiseasePred/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/DiseasePred/index.css -------------------------------------------------------------------------------- /src/components/Doctor/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Doctor/Details.js -------------------------------------------------------------------------------- /src/components/Doctor/Doctor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Doctor/Doctor.js -------------------------------------------------------------------------------- /src/components/Doctor/DoctorForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Doctor/DoctorForm.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Health/Health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Health/Health.js -------------------------------------------------------------------------------- /src/components/Home/BodyCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/BodyCard.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePageBody.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomePageBody.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePageBodyHi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomePageBodyHi.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePageHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomePageHeader.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePageSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomePageSlider.jsx -------------------------------------------------------------------------------- /src/components/Home/HomePageSliderHi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomePageSliderHi.jsx -------------------------------------------------------------------------------- /src/components/Home/Homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/Homepage.jsx -------------------------------------------------------------------------------- /src/components/Home/HomepageHeadHi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/HomepageHeadHi.jsx -------------------------------------------------------------------------------- /src/components/Home/Homepagehi.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/Homepagehi.jsx -------------------------------------------------------------------------------- /src/components/Home/News/News.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/Home/News/News.js -------------------------------------------------------------------------------- /src/components/NavBar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/NavBar/Navbar.js -------------------------------------------------------------------------------- /src/components/NotfoundPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/NotfoundPage/index.jsx -------------------------------------------------------------------------------- /src/components/card/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/components/card/cards.html -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles/Chatbot.css: -------------------------------------------------------------------------------- 1 | .chatbot { 2 | z-index: 20; 3 | } 4 | -------------------------------------------------------------------------------- /src/styles/Details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/Details.css -------------------------------------------------------------------------------- /src/styles/DiseaseDetection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/DiseaseDetection.css -------------------------------------------------------------------------------- /src/styles/DoctorForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/DoctorForm.css -------------------------------------------------------------------------------- /src/styles/Doctors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/Doctors.css -------------------------------------------------------------------------------- /src/styles/HomeEn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/HomeEn.css -------------------------------------------------------------------------------- /src/styles/Map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/Map.css -------------------------------------------------------------------------------- /src/styles/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/Navbar.css -------------------------------------------------------------------------------- /src/styles/News.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/News.css -------------------------------------------------------------------------------- /src/styles/cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/cards.css -------------------------------------------------------------------------------- /src/styles/notFoundPageStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/notFoundPageStyle.css -------------------------------------------------------------------------------- /src/styles/w3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/src/styles/w3.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohit200008/medi-Care/HEAD/vercel.json --------------------------------------------------------------------------------