├── Medicare_app
├── app
│ ├── .gitignore
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── drawable
│ │ │ │ │ ├── eye_care.jpg
│ │ │ │ │ ├── heart_care.jpg
│ │ │ │ │ ├── blood_service.gif
│ │ │ │ │ ├── donate_blood.png
│ │ │ │ │ └── ic_launcher_background.xml
│ │ │ │ ├── drawable-nodpi
│ │ │ │ │ ├── app_logo.jpg
│ │ │ │ │ ├── eye_gif_1.gif
│ │ │ │ │ ├── medidtaion.gif
│ │ │ │ │ ├── sand_timer.gif
│ │ │ │ │ ├── soul_care.png
│ │ │ │ │ ├── blood_donation.gif
│ │ │ │ │ ├── doctors_image.jpg
│ │ │ │ │ ├── eye_care_icon_1.png
│ │ │ │ │ ├── fill_form_512.png
│ │ │ │ │ ├── hear_excercise.gif
│ │ │ │ │ ├── heart_care_icon.png
│ │ │ │ │ ├── heart_care_tips.gif
│ │ │ │ │ ├── reduce_stress.gif
│ │ │ │ │ ├── eye_yoga_shifting.gif
│ │ │ │ │ ├── book_aapointment_gif.gif
│ │ │ │ │ ├── heart_excercise_image.jpg
│ │ │ │ │ └── image_processing20200317_9232_147l0fa.gif
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ ├── ic_launcher.webp
│ │ │ │ │ └── ic_launcher_round.webp
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ ├── ic_launcher.webp
│ │ │ │ │ └── ic_launcher_round.webp
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ ├── ic_launcher.webp
│ │ │ │ │ └── ic_launcher_round.webp
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ ├── ic_launcher.webp
│ │ │ │ │ └── ic_launcher_round.webp
│ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ ├── ic_launcher.webp
│ │ │ │ │ └── ic_launcher_round.webp
│ │ │ │ ├── mipmap-anydpi-v26
│ │ │ │ │ ├── ic_launcher.xml
│ │ │ │ │ └── ic_launcher_round.xml
│ │ │ │ ├── values
│ │ │ │ │ ├── colors.xml
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ └── themes.xml
│ │ │ │ ├── xml
│ │ │ │ │ ├── backup_rules.xml
│ │ │ │ │ └── data_extraction_rules.xml
│ │ │ │ ├── values-night
│ │ │ │ │ └── themes.xml
│ │ │ │ ├── layout
│ │ │ │ │ ├── activity_splash_screen.xml
│ │ │ │ │ ├── activity_heart_care_excercise.xml
│ │ │ │ │ ├── activity_doctor_consulation.xml
│ │ │ │ │ ├── activity_blood_service.xml
│ │ │ │ │ ├── activity_heart_care_service.xml
│ │ │ │ │ ├── activity_eye_care_service.xml
│ │ │ │ │ ├── activity_soul_care.xml
│ │ │ │ │ ├── activity_eye_care_excercise.xml
│ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ └── activity_home_page.xml
│ │ │ │ └── drawable-v24
│ │ │ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── learnathon1
│ │ │ │ │ ├── Heart_care_excercise.java
│ │ │ │ │ ├── splash_screen.java
│ │ │ │ │ ├── Eye_care_excercise.java
│ │ │ │ │ ├── Blood_service.java
│ │ │ │ │ ├── Soul_care.java
│ │ │ │ │ ├── doctor_consulation.java
│ │ │ │ │ ├── MainActivity.java
│ │ │ │ │ ├── Heart_care_Service.java
│ │ │ │ │ ├── Eye_care_service.java
│ │ │ │ │ └── Home_page.java
│ │ │ └── AndroidManifest.xml
│ │ ├── test
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── learnathon1
│ │ │ │ └── ExampleUnitTest.java
│ │ └── androidTest
│ │ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── learnathon1
│ │ │ └── ExampleInstrumentedTest.java
│ ├── proguard-rules.pro
│ └── build.gradle
├── .idea
│ ├── .gitignore
│ ├── compiler.xml
│ ├── gradle.xml
│ └── misc.xml
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── .gitignore
├── build.gradle
├── settings.gradle
├── gradle.properties
├── gradlew.bat
└── gradlew
├── hospital website
├── image
│ ├── blog-1.jpg
│ ├── blog-2.jpg
│ ├── blog-3.jpg
│ ├── doc-1.jpg
│ ├── doc-2.jpg
│ ├── doc-3.jpg
│ ├── doc-4.jpg
│ ├── doc-5.jpg
│ ├── doc-6.jpg
│ ├── pic-1.png
│ ├── pic-2.png
│ └── pic-3.png
├── js
│ └── script.js
├── eye.html
├── blood.html
├── heart.html
├── dental.html
├── nutritionist.html
├── soul.html
├── css
│ └── style.css
└── index.html
└── README.md
/Medicare_app/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/Medicare_app/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/hospital website/image/blog-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-1.jpg
--------------------------------------------------------------------------------
/hospital website/image/blog-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-2.jpg
--------------------------------------------------------------------------------
/hospital website/image/blog-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/blog-3.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-1.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-2.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-3.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-4.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-5.jpg
--------------------------------------------------------------------------------
/hospital website/image/doc-6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/doc-6.jpg
--------------------------------------------------------------------------------
/hospital website/image/pic-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-1.png
--------------------------------------------------------------------------------
/hospital website/image/pic-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-2.png
--------------------------------------------------------------------------------
/hospital website/image/pic-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/hospital website/image/pic-3.png
--------------------------------------------------------------------------------
/Medicare_app/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable/eye_care.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/eye_care.jpg
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable/heart_care.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/heart_care.jpg
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable/blood_service.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/blood_service.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable/donate_blood.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable/donate_blood.png
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/app_logo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/app_logo.jpg
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/eye_gif_1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_gif_1.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/medidtaion.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/medidtaion.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/sand_timer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/sand_timer.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/soul_care.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/soul_care.png
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/blood_donation.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/blood_donation.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/doctors_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/doctors_image.jpg
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/eye_care_icon_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_care_icon_1.png
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/fill_form_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/fill_form_512.png
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/hear_excercise.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/hear_excercise.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_icon.png
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_tips.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_care_tips.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/reduce_stress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/reduce_stress.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/eye_yoga_shifting.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/eye_yoga_shifting.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/book_aapointment_gif.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/book_aapointment_gif.gif
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/heart_excercise_image.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/heart_excercise_image.jpg
--------------------------------------------------------------------------------
/Medicare_app/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-nodpi/image_processing20200317_9232_147l0fa.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Mohitraj27/Medicare/HEAD/Medicare_app/app/src/main/res/drawable-nodpi/image_processing20200317_9232_147l0fa.gif
--------------------------------------------------------------------------------
/Medicare_app/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jul 20 16:19:39 IST 2022
2 | distributionBase=GRADLE_USER_HOME
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
4 | distributionPath=wrapper/dists
5 | zipStorePath=wrapper/dists
6 | zipStoreBase=GRADLE_USER_HOME
7 |
--------------------------------------------------------------------------------
/Medicare_app/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/caches
5 | /.idea/libraries
6 | /.idea/modules.xml
7 | /.idea/workspace.xml
8 | /.idea/navEditor.xml
9 | /.idea/assetWizardSettings.xml
10 | .DS_Store
11 | /build
12 | /captures
13 | .externalNativeBuild
14 | .cxx
15 | local.properties
16 |
--------------------------------------------------------------------------------
/Medicare_app/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | plugins {
3 | id 'com.android.application' version '7.2.1' apply false
4 | id 'com.android.library' version '7.2.1' apply false
5 | }
6 |
7 | task clean(type: Delete) {
8 | delete rootProject.buildDir
9 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/hospital website/js/script.js:
--------------------------------------------------------------------------------
1 | let menu = document.querySelector('#menu-btn');
2 | let navbar = document.querySelector('.navbar');
3 |
4 | menu.onclick = () =>{
5 | menu.classList.toggle('fa-times');
6 | navbar.classList.toggle('active');
7 | }
8 |
9 | window.onscroll = () =>{
10 | menu.classList.remove('fa-times');
11 | navbar.classList.remove('active');
12 | }
--------------------------------------------------------------------------------
/Medicare_app/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | gradlePluginPortal()
4 | google()
5 | mavenCentral()
6 | }
7 | }
8 | dependencyResolutionManagement {
9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | }
15 | rootProject.name = "Learnathon1"
16 | include ':app'
17 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFBB86FC
4 | #FF6200EE
5 | #FF3700B3
6 | #FF03DAC5
7 | #FF018786
8 | #FF000000
9 | #FFFFFFFF
10 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/test/java/com/example/learnathon1/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/xml/backup_rules.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
13 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/xml/data_extraction_rules.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
12 |
13 |
19 |
--------------------------------------------------------------------------------
/Medicare_app/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Heart_care_excercise.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 |
5 | import android.content.Intent;
6 | import android.net.Uri;
7 | import android.os.Bundle;
8 | import android.view.View;
9 |
10 | public class Heart_care_excercise extends AppCompatActivity {
11 |
12 | @Override
13 | protected void onCreate(Bundle savedInstanceState) {
14 | super.onCreate(savedInstanceState);
15 | setContentView(R.layout.activity_heart_care_excercise);
16 | }
17 |
18 | public void Heart_excercise(View view) {
19 |
20 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.youtube.com/watch?v=gNUq_rCtbxQ"));
21 | startActivity(browserIntent);
22 | }
23 |
24 | }
25 |
--------------------------------------------------------------------------------
/Medicare_app/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | 𝙼𝚎𝚍𝚒𝚌𝚊𝚛𝚎
3 | We work towards your betterment and well being.
4 | Entrust us with your will and we will provide you
5 | the best.
6 | 𝙷𝚎𝚊𝚛𝚝 𝙲𝚊𝚛𝚎 𝙴𝚡𝚌𝚎𝚛𝚌𝚒𝚜𝚎𝚜
7 | 𝐃𝐨𝐜𝐭𝐨𝐫 𝐂𝐨𝐧𝐬𝐮𝐥𝐚𝐭𝐢𝐨𝐧
8 |
9 | 𝟏. 𝐈𝐦𝐩𝐫𝐨𝐯𝐞𝐬 𝐕𝐢𝐬𝐢𝐨𝐧.
10 | 𝟐. 𝐏𝐫𝐞𝐯𝐞𝐧𝐭𝐬 𝐄𝐲𝐞 𝐃𝐫𝐲𝐧𝐞𝐬𝐬.
11 | 𝟑. 𝐑𝐞𝐝𝐮𝐜𝐞𝐬 𝐒𝐭𝐫𝐚𝐢𝐧 𝐨𝐧 𝐭𝐡𝐞 𝐄𝐲𝐞𝐬.
12 | 𝟒. 𝐈𝐦𝐩𝐫𝐨𝐯𝐞𝐬 𝐏𝐞𝐫𝐢𝐩𝐡𝐞𝐫𝐚𝐥 𝐕𝐢𝐬𝐢𝐨𝐧.
13 | 𝟓. 𝐄𝐧𝐡𝐚𝐧𝐜𝐞𝐬 𝐂𝐨𝐧𝐜𝐞𝐧𝐭𝐫𝐚𝐭𝐢𝐨𝐧.
14 |
15 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/values-night/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
16 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/androidTest/java/com/example/learnathon1/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import android.content.Context;
4 |
5 | import androidx.test.platform.app.InstrumentationRegistry;
6 | import androidx.test.ext.junit.runners.AndroidJUnit4;
7 |
8 | import org.junit.Test;
9 | import org.junit.runner.RunWith;
10 |
11 | import static org.junit.Assert.*;
12 |
13 | /**
14 | * Instrumented test, which will execute on an Android device.
15 | *
16 | * @see Testing documentation
17 | */
18 | @RunWith(AndroidJUnit4.class)
19 | public class ExampleInstrumentedTest {
20 | @Test
21 | public void useAppContext() {
22 | // Context of the app under test.
23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24 | assertEquals("com.example.learnathon1", appContext.getPackageName());
25 | }
26 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/splash_screen.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 |
5 | import android.content.Intent;
6 | import android.os.Bundle;
7 | import android.os.Handler;
8 | import android.view.WindowManager;
9 |
10 | public class splash_screen extends AppCompatActivity {
11 | Handler handler;
12 | @Override
13 | protected void onCreate(Bundle savedInstanceState) {
14 | super.onCreate(savedInstanceState);
15 |
16 | setContentView(R.layout.activity_splash_screen);
17 |
18 |
19 | handler=new Handler();
20 | handler.postDelayed(new Runnable() {
21 | @Override
22 | public void run() {
23 | Intent intent=new Intent(splash_screen.this,MainActivity.class);
24 | startActivity(intent);
25 | finish();
26 | }
27 | },2000);
28 |
29 | }
30 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_splash_screen.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
23 |
--------------------------------------------------------------------------------
/Medicare_app/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id 'com.android.application'
3 | }
4 |
5 | android {
6 | compileSdk 32
7 |
8 | defaultConfig {
9 | applicationId "com.example.learnathon1"
10 | minSdk 21
11 | targetSdk 32
12 | versionCode 1
13 | versionName "1.0"
14 |
15 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
16 | }
17 |
18 | buildTypes {
19 | release {
20 | minifyEnabled false
21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
22 | }
23 | }
24 | compileOptions {
25 | sourceCompatibility JavaVersion.VERSION_1_8
26 | targetCompatibility JavaVersion.VERSION_1_8
27 | }
28 | }
29 |
30 | dependencies {
31 |
32 |
33 | // for Gif
34 | implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17'
35 |
36 | implementation 'androidx.appcompat:appcompat:1.4.2'
37 | implementation 'com.google.android.material:material:1.6.1'
38 | implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
39 | testImplementation 'junit:junit:4.13.2'
40 | androidTestImplementation 'androidx.test.ext:junit:1.1.3'
41 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
42 | }
--------------------------------------------------------------------------------
/Medicare_app/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app"s APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Enables namespacing of each library's R class so that its R class includes only the
19 | # resources declared in the library itself and none from the library's dependencies,
20 | # thereby reducing the size of the R class for that library
21 | android.nonTransitiveRClass=true
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Eye_care_excercise.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.os.Build;
10 | import android.os.Bundle;
11 |
12 | public class Eye_care_excercise extends AppCompatActivity {
13 |
14 | @Override
15 | protected void onCreate(Bundle savedInstanceState) {
16 | super.onCreate(savedInstanceState);
17 | setContentView(R.layout.activity_eye_care_excercise);
18 | //For Notification
19 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
20 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
21 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
22 | Home_page_manager.createNotificationChannel(Home_page_channel);
23 | }
24 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
25 | .setContentTitle("Eye Care Excercise")
26 | .setSmallIcon(R.drawable.app_logo)
27 | .setAutoCancel(true)
28 | .setContentText("Try our Eye Care Excercise for Free.\n ");
29 |
30 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
31 | Home_page_manager.notify(111,builder.build());
32 |
33 |
34 | }
35 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_heart_care_excercise.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
22 |
23 |
35 |
36 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable-v24/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
15 |
18 |
21 |
22 |
23 |
24 |
30 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Blood_service.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.content.Intent;
10 | import android.net.Uri;
11 | import android.os.Build;
12 | import android.os.Bundle;
13 | import android.view.View;
14 |
15 | public class Blood_service extends AppCompatActivity {
16 |
17 | @Override
18 | protected void onCreate(Bundle savedInstanceState) {
19 | super.onCreate(savedInstanceState);
20 | setContentView(R.layout.activity_blood_service);
21 | //For Notification
22 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
23 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
24 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
25 | Home_page_manager.createNotificationChannel(Home_page_channel);
26 | }
27 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
28 | .setContentTitle("Blood Donation Service")
29 | .setSmallIcon(R.drawable.app_logo)
30 | .setAutoCancel(true)
31 | .setContentText("Be the reason for someone's heartbeat..\n ");
32 |
33 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
34 | Home_page_manager.notify(11111119,builder.build());
35 |
36 | }
37 |
38 | public void Red_cross(View view) {
39 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://indianredcross.org/ircs/donatenow"));
40 | startActivity(browserIntent);
41 | }
42 | }
--------------------------------------------------------------------------------
/Medicare_app/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Soul_care.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.content.Intent;
10 | import android.net.Uri;
11 | import android.os.Build;
12 | import android.os.Bundle;
13 | import android.view.View;
14 | import android.widget.Button;
15 |
16 | public class Soul_care extends AppCompatActivity {
17 | Button doctors;
18 | @Override
19 | protected void onCreate(Bundle savedInstanceState) {
20 | super.onCreate(savedInstanceState);
21 | setContentView(R.layout.activity_soul_care);
22 |
23 | //For Notification
24 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
25 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
26 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
27 | Home_page_manager.createNotificationChannel(Home_page_channel);
28 | }
29 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
30 | .setContentTitle("Soul Care Service")
31 | .setSmallIcon(R.drawable.app_logo)
32 | .setAutoCancel(true)
33 | .setContentText("We believe in the purposeful care of one’s mind.\n ");
34 |
35 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
36 | Home_page_manager.notify(1111111111,builder.build());
37 |
38 |
39 |
40 | doctors=findViewById(R.id.Doctors);
41 | doctors.setOnClickListener(new View.OnClickListener() {
42 | @Override
43 | public void onClick(View view) {
44 | Intent intent=new Intent(Soul_care.this,doctor_consulation.class);
45 | startActivity(intent);
46 | }
47 | });
48 | }
49 |
50 |
51 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/doctor_consulation.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.content.Intent;
10 | import android.net.Uri;
11 | import android.os.Build;
12 | import android.os.Bundle;
13 | import android.view.View;
14 |
15 | public class doctor_consulation extends AppCompatActivity {
16 |
17 | @Override
18 | protected void onCreate(Bundle savedInstanceState) {
19 | super.onCreate(savedInstanceState);
20 | setContentView(R.layout.activity_doctor_consulation);
21 | //For Notification
22 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
23 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
24 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
25 | Home_page_manager.createNotificationChannel(Home_page_channel);
26 | }
27 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
28 | .setContentTitle("Doctors Consulation")
29 | .setSmallIcon(R.drawable.app_logo)
30 | .setAutoCancel(true)
31 | .setContentText("Get an expert Medical Opinion.\n ");
32 |
33 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
34 | Home_page_manager.notify(111111,builder.build());
35 |
36 |
37 | }
38 |
39 | public void Google_form(View view) {
40 |
41 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://forms.gle/Bjdn1Mraj1sv4Dwz6"));
42 | startActivity(browserIntent);
43 | }
44 |
45 | public void Get_in_touch_with_us(View view) {
46 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://docs.google.com/forms/d/1Qu-pcGHetpdtO8yOdaujTSDW3kPOJCIiKMyDIblc7Do/edit"));
47 | startActivity(browserIntent);
48 | }
49 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AlertDialog;
4 | import androidx.appcompat.app.AppCompatActivity;
5 |
6 | import android.content.DialogInterface;
7 | import android.content.Intent;
8 | import android.net.Uri;
9 | import android.os.Bundle;
10 | import android.view.View;
11 | import android.widget.Button;
12 |
13 | public class MainActivity extends AppCompatActivity {
14 |
15 |
16 | Button Get_started;
17 | @Override
18 | protected void onCreate(Bundle savedInstanceState) {
19 | super.onCreate(savedInstanceState);
20 | setContentView(R.layout.activity_main);
21 | Get_started=findViewById(R.id.Get_started);
22 | Get_started.setOnClickListener(new View.OnClickListener() {
23 | @Override
24 | public void onClick(View view) {
25 | Intent intent=new Intent(MainActivity.this,Home_page.class);
26 | startActivity(intent);
27 | }
28 | });
29 |
30 | }
31 | @Override
32 | public void onBackPressed(){
33 | AlertDialog.Builder builder=new AlertDialog.Builder(this);
34 | builder.setMessage("Are you sure you want to Exit?")
35 | .setCancelable(false)
36 | .setPositiveButton("Yes",new DialogInterface.OnClickListener()
37 | {
38 | @Override
39 | public void onClick(DialogInterface dialogInterface, int i)
40 | {
41 | finish();
42 | MainActivity.super.onBackPressed();
43 | }
44 | })
45 |
46 |
47 | .setNegativeButton("No", new DialogInterface.OnClickListener() {
48 | @Override
49 | public void onClick(DialogInterface dialogInterface, int i) {
50 | dialogInterface.cancel();
51 | }
52 | });
53 |
54 |
55 | AlertDialog alertDialog= builder.create();
56 | alertDialog.show();
57 | }
58 |
59 | public void Explore_website(View view) {
60 | Intent browserIntent =new Intent(Intent.ACTION_VIEW, Uri.parse("https://leranathon.netlify.app/"));
61 | startActivity(browserIntent);
62 | }
63 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Heart_care_Service.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.content.Intent;
10 | import android.net.Uri;
11 | import android.os.Build;
12 | import android.os.Bundle;
13 | import android.view.View;
14 | import android.widget.Button;
15 |
16 | public class Heart_care_Service extends AppCompatActivity {
17 | Button Heart_excercise;
18 | Button Doctors_consulation;
19 | @Override
20 | protected void onCreate(Bundle savedInstanceState) {
21 | super.onCreate(savedInstanceState);
22 | setContentView(R.layout.activity_heart_care_service);
23 |
24 |
25 | //For Notification
26 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
27 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
28 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
29 | Home_page_manager.createNotificationChannel(Home_page_channel);
30 | }
31 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
32 | .setContentTitle("Welcome to our Heart Care Service")
33 | .setSmallIcon(R.drawable.app_logo)
34 | .setAutoCancel(true)
35 | .setContentText("We have heart care Exercises for your Healthy Heart !!\n ");
36 |
37 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
38 | Home_page_manager.notify(11,builder.build());
39 |
40 | Heart_excercise=findViewById(R.id.heart_Care_excercise);
41 | Heart_excercise.setOnClickListener(new View.OnClickListener() {
42 | @Override
43 | public void onClick(View view) {
44 | Intent intent=new Intent(Heart_care_Service.this,Heart_care_excercise.class);
45 | startActivity(intent);
46 | }
47 | });
48 | Doctors_consulation=findViewById(R.id.Doctors);
49 | Doctors_consulation.setOnClickListener(new View.OnClickListener() {
50 | @Override
51 | public void onClick(View view) {
52 | Intent intent=new Intent(Heart_care_Service.this,doctor_consulation.class);
53 | startActivity(intent);
54 | }
55 | });
56 | }
57 |
58 |
59 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Eye_care_service.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AppCompatActivity;
4 | import androidx.core.app.NotificationCompat;
5 | import androidx.core.app.NotificationManagerCompat;
6 |
7 | import android.app.NotificationChannel;
8 | import android.app.NotificationManager;
9 | import android.content.Intent;
10 | import android.net.Uri;
11 | import android.os.Build;
12 | import android.os.Bundle;
13 | import android.view.View;
14 | import android.widget.Button;
15 |
16 | public class Eye_care_service extends AppCompatActivity {
17 | Button EYe_care_excercise;
18 | Button Doctors_consulation;
19 | @Override
20 | protected void onCreate(Bundle savedInstanceState) {
21 | super.onCreate(savedInstanceState);
22 | setContentView(R.layout.activity_eye_care_service);
23 |
24 |
25 | //For Notification
26 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
27 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
28 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
29 | Home_page_manager.createNotificationChannel(Home_page_channel);
30 | }
31 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
32 | .setContentTitle("Eye Care Service")
33 | .setSmallIcon(R.drawable.app_logo)
34 | .setAutoCancel(true)
35 | .setContentText("We make our every effort to enhance your vision.\n ");
36 |
37 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
38 | Home_page_manager.notify(1111,builder.build());
39 |
40 |
41 | Doctors_consulation=findViewById(R.id.Doctors);
42 | Doctors_consulation.setOnClickListener(new View.OnClickListener() {
43 | @Override
44 | public void onClick(View view) {
45 | Intent intent=new Intent(Eye_care_service.this,doctor_consulation.class);
46 | startActivity(intent);
47 | }
48 | });
49 |
50 | EYe_care_excercise=findViewById(R.id.eye_Care_excercise);
51 | EYe_care_excercise.setOnClickListener(new View.OnClickListener() {
52 | @Override
53 | public void onClick(View view) {
54 |
55 | Intent intent=new Intent(Eye_care_service.this,Eye_care_excercise.class);
56 | startActivity(intent);
57 | }
58 | });
59 |
60 | }
61 |
62 |
63 | }
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
16 |
20 |
23 |
28 |
33 |
38 |
43 |
48 |
53 |
56 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/Medicare_app/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto execute
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto execute
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :execute
68 | @rem Setup the command line
69 |
70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
71 |
72 |
73 | @rem Execute Gradle
74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
75 |
76 | :end
77 | @rem End local scope for the variables with windows NT shell
78 | if "%ERRORLEVEL%"=="0" goto mainEnd
79 |
80 | :fail
81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
82 | rem the _cmd.exe /c_ return code!
83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
84 | exit /b 1
85 |
86 | :mainEnd
87 | if "%OS%"=="Windows_NT" endlocal
88 |
89 | :omega
90 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_doctor_consulation.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
22 |
23 |
40 |
41 |
56 |
57 |
71 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_blood_service.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
30 |
31 |
42 |
43 |
63 |
64 |
85 |
86 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_heart_care_service.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
28 |
29 |
40 |
41 |
60 |
61 |
81 |
82 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_eye_care_service.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
29 |
30 |
31 |
42 |
43 |
62 |
63 |
83 |
84 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_soul_care.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
36 |
37 |
57 |
58 |
70 |
71 |
91 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_eye_care_excercise.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
29 |
30 |
50 |
70 |
71 |
82 |
83 |
94 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
29 |
30 |
47 |
48 |
59 |
71 |
72 |
92 |
93 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/java/com/example/learnathon1/Home_page.java:
--------------------------------------------------------------------------------
1 | package com.example.learnathon1;
2 |
3 | import androidx.appcompat.app.AlertDialog;
4 | import androidx.appcompat.app.AppCompatActivity;
5 | import androidx.core.app.NotificationCompat;
6 | import androidx.core.app.NotificationManagerCompat;
7 |
8 | import android.app.NotificationChannel;
9 | import android.app.NotificationManager;
10 | import android.content.DialogInterface;
11 | import android.content.Intent;
12 | import android.os.Build;
13 | import android.os.Bundle;
14 | import android.view.View;
15 | import android.widget.ImageView;
16 |
17 | public class Home_page extends AppCompatActivity {
18 |
19 |
20 | ImageView Heart_care,Eye_care,Soul_care,Blood_donation;
21 | @Override
22 | protected void onCreate(Bundle savedInstanceState) {
23 | super.onCreate(savedInstanceState);
24 | setContentView(R.layout.activity_home_page);
25 |
26 |
27 |
28 | //For Notification
29 | if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
30 | NotificationChannel Home_page_channel=new NotificationChannel("HomePage_notification", "HomePage_notification", NotificationManager.IMPORTANCE_DEFAULT);
31 | NotificationManager Home_page_manager =getSystemService(NotificationManager.class);
32 | Home_page_manager.createNotificationChannel(Home_page_channel);
33 | }
34 | NotificationCompat.Builder builder=new NotificationCompat.Builder(this,"HomePage_notification")
35 | .setContentTitle("Welcome to our Medicare Application")
36 | .setSmallIcon(R.drawable.app_logo)
37 | .setAutoCancel(true)
38 | .setContentText("We are committed towards your holistic well-being !!\n ");
39 |
40 | NotificationManagerCompat Home_page_manager = NotificationManagerCompat.from(this);
41 | Home_page_manager.notify(1,builder.build());
42 |
43 |
44 |
45 |
46 |
47 | Blood_donation=findViewById(R.id.blood_donation_);
48 | Blood_donation.setOnClickListener(new View.OnClickListener() {
49 | @Override
50 | public void onClick(View view) {
51 | Intent intent =new Intent(Home_page.this,Blood_service.class);
52 | startActivity(intent);
53 | }
54 | });
55 |
56 | Soul_care=findViewById(R.id.soul_care);
57 | Soul_care.setOnClickListener(new View.OnClickListener() {
58 | @Override
59 | public void onClick(View view) {
60 | Intent intent =new Intent(Home_page.this,Soul_care.class);
61 | startActivity(intent);
62 | }
63 | });
64 | Heart_care = findViewById(R.id.heart_Care);
65 | Heart_care.setOnClickListener(new View.OnClickListener() {
66 | @Override
67 | public void onClick(View view) {
68 | Intent intent =new Intent(Home_page.this,Heart_care_Service.class);
69 | startActivity(intent);
70 | }
71 | });
72 |
73 | Eye_care = findViewById(R.id.eye_care);
74 | Eye_care.setOnClickListener(new View.OnClickListener() {
75 | @Override
76 | public void onClick(View view) {
77 | Intent intent =new Intent(Home_page.this,Eye_care_service.class);
78 | startActivity(intent);
79 | }
80 | });
81 |
82 | }
83 | @Override
84 | public void onBackPressed(){
85 | AlertDialog.Builder builder=new AlertDialog.Builder(this);
86 | builder.setMessage("Are you sure you want to Exit?")
87 | .setCancelable(false)
88 | .setPositiveButton("Yes",new DialogInterface.OnClickListener()
89 | {
90 | @Override
91 | public void onClick(DialogInterface dialogInterface, int i)
92 | {
93 | finish();
94 | Home_page.super.onBackPressed();
95 | }
96 | })
97 |
98 |
99 | .setNegativeButton("No", new DialogInterface.OnClickListener() {
100 | @Override
101 | public void onClick(DialogInterface dialogInterface, int i) {
102 | dialogInterface.cancel();
103 | }
104 | });
105 |
106 |
107 | AlertDialog alertDialog= builder.create();
108 | alertDialog.show();
109 | }
110 | }
--------------------------------------------------------------------------------
/hospital website/eye.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
Eye Care
51 |
Your eyes are an important part of your health. Most people rely on their eyes to see and make sense of the world around them. But some eye diseases can lead to vision loss, so it is important to identify and treat eye diseases as early as possible. You should get your eyes checked as often as your health care provider recommends it, or if you have any new vision problems. And just as it is important to keep your body healthy, you also need to keep your eyes healthy.
52 |
Eye Care Tips
53 |
Eat a healthy, balanced diet. Your diet should include plenty or fruits and vegetables, especially deep yellow and green leafy vegetables. Eating fish high in omega-3 fatty acids, such as salmon, tuna, and halibut can also help your eyes.
54 |
Get regular exercise. Exercise may help to prevent or control diabetes, high blood pressure, and high cholesterol. These diseases can lead to some eye or vision problems. So if you exercise regularly, you can lower your risk of getting these eye and vision problems.
55 |
Wear protective eye wear. To prevent eye injuries, you need eye protection when playing certain sports, working in jobs such as factory work and construction, and doing repairs or projects in your home.
56 |
57 |
Go to Home Page
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 | our specialists
68 |
69 |
70 |
71 |
72 |
73 |
Dr. Bibhuti Kumari
74 |
Ophthalmologist
75 |
76 |
Book Appointment
77 |
78 |
79 |
80 |
81 |
82 |
Dr. Pratik Ranjan
83 |
Ophthalmologist
84 |
85 |
Book Appointment
86 |
87 |
88 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
--------------------------------------------------------------------------------
/hospital website/blood.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
49 |
50 |
Blood Donation
51 |
What is the 4 requirements in donating blood?
52 | Weight: At least 110 lbs (50 kg). Blood volume collected will depend mainly on you body weight. Pulse rate: Between 60 and 100 beats/minute with regular rhythm. Blood pressure: Between 90 and 160 systolic and 60 and 100 diastolic.
53 |
Blood Diesease
54 |
Blood disorders occur when a part of your blood doesn’t do its job. You may have excessive bleeding, difficulty clotting or just not feel like yourself. With most blood disorders, people can expect to have a lifespan and lifestyle that’s relatively normal. Early detection and treatment can make a big difference in your quality of life.
55 |
Anemia.
56 | Hemophilia.
57 | Leukocytosis.
58 | Polycythemia vera.
59 | Sickle cell disease.
60 | Thalassemia.
61 | Von Willebrand disease.
62 |
Go to Home Page
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | our specialists
73 |
74 |
75 |
76 |
77 |
78 |
Youth For Blood
79 |
Donate Blood
80 |
81 |
Book Appointment
82 |
83 |
84 |
85 |
92 |
93 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
--------------------------------------------------------------------------------
/hospital website/heart.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
Heart disease
51 |
The term “heart disease” refers to several types of heart conditions. The most common type of heart disease in the United States is coronary artery disease (CAD), which affects the blood flow to the heart. Decreased blood flow can cause a heart attack.
52 |
53 |
Symptoms
54 |
55 | Heart attack: Chest pain or discomfort, upper back or neck pain, indigestion, heartburn, nausea or vomiting, extreme fatigue, upper body discomfort, dizziness, and shortness of breath.
56 | Arrhythmia: Fluttering feelings in the chest (palpitations).
57 |
58 |
59 | Heart failure: Shortness of breath, fatigue, or swelling of the feet, ankles, legs, abdomen, or neck veins.
60 |
61 |
62 |
Risk Factor
63 |
High blood pressure, high blood cholesterol, and smoking are key risk factors for heart disease. About half of people in the United States (47%) have at least one of these three risk factors.2 Several other medical conditions and lifestyle choices can also put people at a higher risk for heart disease, including
64 | Diabetes
65 | Overweight and obesity
66 | Unhealthy diet
67 | Physical inactivity
68 | Excessive alcohol use
69 |
70 |
Go to Home Page
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 | our specialists
81 |
82 |
83 |
84 |
85 |
86 |
Dr. Mandari Sharma
87 |
Cardiologist
88 |
89 |
Book Appointment
90 |
91 |
92 |
93 |
100 |
101 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
--------------------------------------------------------------------------------
/hospital website/dental.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
49 |
50 |
Dental care
51 |
Tooth decay and gum disease are caused by plaque, a sticky combination of bacteria and food. Plaque begins to build up on teeth within a few minutes after eating. If teeth are not cleaned well each day, plaque will lead to tooth decay or gum disease. If you do not remove plaque, it turns into a hard deposit called tartar that becomes trapped at the base of the tooth. Plaque and tartar irritate and inflame the gums. Bacteria and the toxins they produce cause the gums to become:
52 | Infected
53 | Swollen
54 | Tender
55 |
56 |
Problems
57 |
Cavities are holes that damage the structure of teeth.
58 | Gingivitis is swollen, inflamed, and bleeding gums,
59 | Periodontitis is the destruction of the ligaments and bone that support the teeth, often leading to tooth loss.
60 | Bad breath (halitosis).
61 | Abscesses, pain, inability to use your teeth.
62 | Other health problems outside the mouth, ranging from preterm labor to heart disease.
63 |
Go to Home Page
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | our specialists
74 |
75 |
76 |
77 |
78 |
79 |
Dr. Seema Sharma
80 |
Dental Surgeon
81 |
82 |
Book Appointment
83 |
84 |
85 |
86 |
93 |
94 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 | s
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/layout/activity_home_page.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
22 |
23 |
42 |
43 |
56 |
57 |
62 |
63 |
69 |
70 |
77 |
78 |
84 |
85 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
106 |
107 |
108 |
109 |
110 |
111 |
--------------------------------------------------------------------------------
/hospital website/nutritionist.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
49 |
50 |
Balance Diet
51 |
A balanced diet is a diet that contains differing kinds of foods in certain quantities and proportions so that the requirement for calories, proteins, minerals, vitamins and alternative nutrients is adequate and a small provision is reserved for additional nutrients to endure the short length of leanness. In addition, a balanced diet ought to offer bioactive phytochemicals like dietary fiber, antioxidants and nutraceuticals that have positive health advantages. A balanced diet should offer around 60-70% of total calories from carbohydrates, 10-12% from proteins and 20-25% of total calories from fat.
52 |
Health Benefits
53 |
Meets your nutritional need. A varied, balanced diet provides the nutrients you need to avoid nutritional deficiencies.
54 | Prevent and treat certain diseases. Healthful eating can prevent the risk of developing certain diseases such as diabetes, cancer and heart disease. It is also helpful in treating diabetes and high blood pressure.
55 | Following a special diet can reduce symptoms, and may help you better manage an illness or condition.
56 |
General Guidelines
57 |
The most important rule of healthy eating is not skipping any meal. Skipping meals lowers your metabolic rate. Normal eating includes 3 major meals and 2 snacks between meals. Also, Never skip breakfast. It is the foremost vital meal of the day.
58 | Learn simple ways to prepare food. Healthy eating doesn’t have to mean complicated eating. Keep meal preparation easy, eat more raw foods such as salads, fruits and vegetable juices, and focus on the pleasure of eating healthy food rather than the calories.
59 |
60 |
Go to Home Page
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | our specialists
71 |
72 |
73 |
74 |
82 |
83 |
90 |
91 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
--------------------------------------------------------------------------------
/hospital website/soul.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
48 |
49 |
50 |
Meditation and Yoga
51 |
Yoga and meditation have both become increasingly popular in the Western world, and practitioners praise their psychological and physical benefits. Current research also suggests that meditating and doing yoga can boost overall well-being and resilience to stress factors.
52 |
Yoga and meditation may improve resilience
53 |
Dr. Cahn and team worked with some of the participants at a 3-month yoga and meditation retreat. At this retreat, the participants engaged in daily meditation and yoga practice, and they followed a vegetarian diet.
54 |
55 | Of the 200 participants (both male and female), 98 volunteered to participate in tests measuring particular biomarkers. However, due to a lack of funding, only 38 volunteers (19 male and 19 female) underwent these assessments.
56 |
57 | Additionally, due to circumstances that rendered some of the data unusable, biological samples collected from 26 of these volunteers were analyzed.
58 |
59 | Many participants had previous experience of practicing yoga and meditation on a frequent basis, including Shoonya and Samyama meditation, Hatha yoga, and pranayama.
60 |
Potential benefits to the nervous system
61 |
The researchers believe that the various biological improvements gathered from the collected data indicate an enhanced overall sense of physical and psychological well-being.
62 |
63 | They highlight that their results may point to an enhanced functioning of certain elements of the central nervous system, a healthier immune system, and a strengthened sense of focus and awareness.
64 |
65 |
Go to Home Page
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 | our specialists
76 |
77 |
78 |
79 |
87 |
88 |
95 |
96 |
97 |
98 |
Inspirational Yoga
99 |
Yoaga Studio
100 |
101 |
Book Appointment
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/Medicare_app/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/Medicare_app/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 |
86 | # Determine the Java command to use to start the JVM.
87 | if [ -n "$JAVA_HOME" ] ; then
88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
89 | # IBM's JDK on AIX uses strange locations for the executables
90 | JAVACMD="$JAVA_HOME/jre/sh/java"
91 | else
92 | JAVACMD="$JAVA_HOME/bin/java"
93 | fi
94 | if [ ! -x "$JAVACMD" ] ; then
95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
96 |
97 | Please set the JAVA_HOME variable in your environment to match the
98 | location of your Java installation."
99 | fi
100 | else
101 | JAVACMD="java"
102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
103 |
104 | Please set the JAVA_HOME variable in your environment to match the
105 | location of your Java installation."
106 | fi
107 |
108 | # Increase the maximum file descriptors if we can.
109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
110 | MAX_FD_LIMIT=`ulimit -H -n`
111 | if [ $? -eq 0 ] ; then
112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
113 | MAX_FD="$MAX_FD_LIMIT"
114 | fi
115 | ulimit -n $MAX_FD
116 | if [ $? -ne 0 ] ; then
117 | warn "Could not set maximum file descriptor limit: $MAX_FD"
118 | fi
119 | else
120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
121 | fi
122 | fi
123 |
124 | # For Darwin, add options to specify how the application appears in the dock
125 | if $darwin; then
126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
127 | fi
128 |
129 | # For Cygwin or MSYS, switch paths to Windows format before running java
130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
133 |
134 | JAVACMD=`cygpath --unix "$JAVACMD"`
135 |
136 | # We build the pattern for arguments to be converted via cygpath
137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
138 | SEP=""
139 | for dir in $ROOTDIRSRAW ; do
140 | ROOTDIRS="$ROOTDIRS$SEP$dir"
141 | SEP="|"
142 | done
143 | OURCYGPATTERN="(^($ROOTDIRS))"
144 | # Add a user-defined pattern to the cygpath arguments
145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
147 | fi
148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
149 | i=0
150 | for arg in "$@" ; do
151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
153 |
154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
156 | else
157 | eval `echo args$i`="\"$arg\""
158 | fi
159 | i=`expr $i + 1`
160 | done
161 | case $i in
162 | 0) set -- ;;
163 | 1) set -- "$args0" ;;
164 | 2) set -- "$args0" "$args1" ;;
165 | 3) set -- "$args0" "$args1" "$args2" ;;
166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
172 | esac
173 | fi
174 |
175 | # Escape application args
176 | save () {
177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
178 | echo " "
179 | }
180 | APP_ARGS=`save "$@"`
181 |
182 | # Collect all arguments for the java command, following the shell quoting and substitution rules
183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
184 |
185 | exec "$JAVACMD" "$@"
186 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | 👩⚕️👨⚕️
2 | 
3 |
4 | ## 𝙰𝚋𝚘𝚞𝚝 𝚃𝚑𝚎 𝙿𝚛𝚘𝚓𝚎𝚌𝚝
5 | 𝙸𝚝 𝚌𝚘𝚗𝚜𝚒𝚜𝚝𝚜 𝚘𝚏 𝚝𝚠𝚘 𝚜𝚎𝚐𝚖𝚎𝚗𝚝𝚜
6 |
7 | 𝟷) 𝚆𝚎𝚋 𝚊𝚙𝚙
8 |
9 | 𝟸) 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝚊𝚙𝚙
10 |
11 | 𝚆𝙴𝙱 𝙰𝙿𝙿
12 | 𝙸𝚗 𝚝𝚑𝚎 𝚏𝚒𝚛𝚜𝚝 𝚜𝚎𝚐𝚖𝚎𝚗𝚝 𝙼𝚎𝚍𝚒𝚌𝚊𝚛𝚎 𝚆𝚎𝚋 𝙰𝚙𝚙 𝚒𝚜 𝚊 𝚆𝚎𝚋 𝙳𝚎𝚟𝚎𝚕𝚘𝚙𝚖𝚎𝚗𝚝 𝙿𝚛𝚘𝚓𝚎𝚌𝚝. 𝙸𝚝 𝚒𝚜 𝚊 𝙼𝚎𝚍𝚒𝚌𝚊𝚕 𝚙𝚘𝚛𝚝𝚊𝚕 𝚠𝚑𝚎𝚛𝚎 𝚠𝚎 𝚊𝚒𝚖 𝚝𝚘 𝚜𝚙𝚛𝚎𝚊𝚍 𝚊𝚠𝚊𝚛𝚎𝚗𝚎𝚜𝚜 𝚊𝚗𝚍 𝚑𝚎𝚕𝚙 𝚞𝚜𝚎𝚛 𝚏𝚒𝚗𝚍 𝚠𝚊𝚢𝚜 𝚝𝚘 𝚒𝚖𝚙𝚛𝚘𝚟𝚎 𝚝𝚑𝚎𝚒𝚛 𝚠𝚎𝚕𝚕 𝚋𝚎𝚒𝚗𝚐. 𝙸𝚝 𝚒𝚜 𝚍𝚎𝚜𝚒𝚐𝚗𝚎𝚍 𝚠𝚒𝚝𝚑 𝚊 𝚖𝚒𝚗𝚒𝚖𝚊𝚕𝚒𝚜𝚝 𝚒𝚗𝚝𝚎𝚛𝚏𝚊𝚌𝚎 𝚏𝚘𝚛 𝚋𝚎𝚝𝚝𝚎𝚛 𝚞𝚜𝚎𝚛 𝚎𝚡𝚙𝚎𝚛𝚒𝚎𝚗𝚌𝚎 𝚠𝚒𝚝𝚑𝚘𝚞𝚝 𝚊𝚗𝚢 𝚑𝚞𝚛𝚍𝚕𝚎.
13 |
14 | 𝚃𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚌𝚘𝚗𝚜𝚒𝚜𝚝𝚜 𝚘𝚏 𝟼 𝚜𝚎𝚐𝚖𝚎𝚗𝚝𝚜: 𝙷𝚘𝚖𝚎 𝚙𝚊𝚐𝚎, 𝙾𝚞𝚛 𝚜𝚎𝚛𝚟𝚒𝚌𝚎𝚜, 𝙰𝚋𝚘𝚞𝚝 𝚞𝚜, 𝙾𝚞𝚛 𝚎𝚡𝚙𝚎𝚛𝚝𝚜,𝙱𝚘𝚘𝚔 𝚗𝚘𝚠 𝚊𝚗𝚍 𝚌𝚕𝚒𝚎𝚗𝚝 𝚛𝚎𝚟𝚒𝚎𝚠𝚜. 𝙷𝚘𝚖𝚎 𝚙𝚊𝚐𝚎 𝚒𝚜 𝚝𝚑𝚎 𝚖𝚊𝚒𝚗 𝚙𝚊𝚐𝚎 𝚘𝚏 𝚝𝚑𝚎 𝚙𝚘𝚛𝚝𝚊𝚕 𝚌𝚘𝚖𝚙𝚛𝚒𝚜𝚒𝚗𝚐 𝚘𝚏 𝚋𝚛𝚒𝚎𝚏 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚊𝚋𝚘𝚞𝚝 𝚝𝚑𝚎 𝚠𝚎𝚋𝚜𝚒𝚝𝚎, 𝚌𝚘𝚗𝚝𝚊𝚌𝚝 𝚍𝚎𝚝𝚊𝚒𝚕𝚜, 𝚝𝚎𝚜𝚝𝚒𝚖𝚘𝚗𝚒𝚊𝚕𝚜 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛 𝚗𝚊𝚟𝚒𝚐𝚊𝚝𝚒𝚘𝚗 𝚘𝚙𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚖𝚘𝚟𝚎 𝚊𝚗𝚢𝚠𝚑𝚎𝚛𝚎 𝚒𝚗𝚜𝚒𝚍𝚎 𝚝𝚑𝚎 𝚙𝚘𝚛𝚝𝚊𝚕.
15 | 𝙾𝚞𝚛 𝚂𝚎𝚛𝚟𝚒𝚌𝚎𝚜 𝚌𝚘𝚗𝚜𝚒𝚜𝚝𝚜 𝚘𝚏 𝚝𝚑𝚎 𝚖𝚎𝚍𝚒𝚌𝚊𝚕 𝚏𝚊𝚌𝚒𝚕𝚒𝚝𝚢 𝚠𝚎 𝚙𝚛𝚘𝚟𝚒𝚍𝚎 𝚝𝚘 𝚞𝚜𝚎𝚛 𝚒𝚗 𝚟𝚊𝚛𝚒𝚘𝚞𝚜 𝚏𝚒𝚎𝚕𝚍𝚜. 𝚞𝚜𝚎𝚛 𝚌𝚊𝚗 𝚕𝚘𝚐 𝚒𝚗𝚝𝚘 𝚟𝚊𝚛𝚒𝚘𝚞𝚜 𝚜𝚎𝚛𝚟𝚒𝚌𝚎𝚜 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝𝚕𝚢 𝚊𝚗𝚍 𝚐𝚎𝚝 𝚝𝚑𝚎 𝚋𝚎𝚗𝚎𝚏𝚒𝚝𝚜 𝚘𝚏 𝚒𝚝 𝚋𝚢 𝚛𝚎𝚊𝚍𝚒𝚗𝚐 𝚊𝚋𝚘𝚞𝚝 𝚒𝚝 𝚘𝚛 𝚋𝚢 𝚋𝚘𝚘𝚔𝚒𝚗𝚐 𝚊𝚗𝚢 𝚊𝚙𝚙𝚘𝚒𝚗𝚝𝚖𝚎𝚗𝚝𝚜 𝚝𝚘 𝚘𝚞𝚛 𝚎𝚡𝚙𝚎𝚛𝚝𝚜 𝚒𝚗 𝚝𝚑𝚊𝚝 𝚍𝚘𝚖𝚊𝚒𝚗.
16 | 𝚃𝚑𝚎 𝚊𝚋𝚘𝚞𝚝 𝚞𝚜 𝚙𝚊𝚐𝚎 𝚝𝚎𝚕𝚕𝚜 𝚞𝚜 𝚊𝚋𝚘𝚞𝚝 𝚘𝚞𝚛 𝚌𝚘𝚖𝚖𝚞𝚗𝚒𝚝𝚢 𝚊𝚗𝚍 𝚠𝚑𝚊𝚝 𝚠𝚎 𝚊𝚛𝚎 𝚊𝚒𝚖𝚒𝚗𝚐 𝚊𝚝 𝚊𝚗𝚍 𝚑𝚘𝚠 𝚝𝚘 𝚖𝚊𝚔𝚎 𝚘𝚞𝚛 𝚙𝚘𝚛𝚝𝚊𝚕 𝚎𝚏𝚏𝚒𝚌𝚒𝚎𝚗𝚝 𝚏𝚘𝚛 𝚞𝚜𝚎𝚛𝚜 𝚊𝚗𝚍 𝚑𝚎𝚕𝚙 𝚝𝚑𝚎𝚖 𝚒𝚗 𝚊𝚗𝚢 𝚞𝚛𝚐𝚎𝚗𝚌𝚒𝚎𝚜.
17 | 𝚃𝚑𝚎𝚗 𝚌𝚘𝚖𝚎𝚜 𝙾𝚞𝚛 𝙳𝚘𝚌𝚝𝚘𝚛𝚜 𝚙𝚊𝚐𝚎 𝚠𝚑𝚎𝚛𝚎 𝚢𝚘𝚞 𝚌𝚊𝚗 𝚎𝚡𝚌𝚕𝚞𝚜𝚒𝚟𝚎𝚕𝚢 𝚖𝚎𝚎𝚝 𝚘𝚞𝚛 𝚋𝚎𝚜𝚝 𝚎𝚡𝚙𝚎𝚛𝚝𝚜 𝚒𝚗 𝚊𝚗𝚢 𝚍𝚘𝚖𝚊𝚒𝚗. 𝙷𝚎𝚛𝚎 𝚢𝚘𝚞 𝚌𝚊𝚗 𝚊𝚕𝚜𝚘 𝚋𝚘𝚘𝚔 𝚊𝚙𝚙𝚘𝚒𝚗𝚝𝚖𝚎𝚗𝚝 𝚘𝚏 𝚘𝚞𝚛 𝚟𝚊𝚛𝚒𝚘𝚞𝚜 𝚏𝚊𝚖𝚘𝚞𝚜 𝚍𝚘𝚌𝚝𝚘𝚛.
18 | 𝚃𝚑𝚎𝚗 𝚌𝚘𝚖𝚎𝚜 𝚘𝚞𝚛 𝚌𝚕𝚒𝚎𝚗𝚝 𝚛𝚎𝚟𝚒𝚎𝚠 𝚜𝚎𝚌𝚝𝚒𝚘𝚗 𝚠𝚑𝚎𝚛𝚎 𝚠𝚎 𝚑𝚊𝚟𝚎 𝚖𝚎𝚗𝚝𝚒𝚘𝚗𝚎𝚍 𝚘𝚞𝚛 𝚏𝚎𝚠 𝚛𝚎𝚟𝚒𝚎𝚠 𝚘𝚏 𝚘𝚞𝚛 𝚌𝚘𝚜𝚝𝚞𝚖𝚎𝚛𝚜 𝚝𝚘 𝚘𝚞𝚛 𝚜𝚎𝚛𝚟𝚒𝚌𝚎𝚜.
19 | 𝙱𝚕𝚘𝚐 𝚙𝚊𝚐𝚎 𝚒𝚜 𝚍𝚎𝚜𝚒𝚐𝚗𝚎𝚍 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚙𝚞𝚛𝚙𝚘𝚜𝚎 𝚘𝚏 𝚜𝚑𝚊𝚛𝚒𝚗𝚐 𝚊𝚛𝚝𝚒𝚌𝚕𝚎𝚜 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛 𝚙𝚒𝚎𝚌𝚎𝚜 𝚘𝚏 𝚠𝚛𝚒𝚝𝚒𝚗𝚐 𝚊𝚋𝚘𝚞𝚝 𝚖𝚎𝚗𝚝𝚊𝚕 𝚑𝚎𝚊𝚕𝚝𝚑 𝚊𝚠𝚊𝚛𝚎𝚗𝚎𝚜𝚜 𝚊𝚗𝚍 𝚜𝚘𝚖𝚎 𝚝𝚒𝚙𝚜 𝚊𝚗𝚍 𝚝𝚛𝚒𝚌𝚔𝚜 𝚟𝚒𝚊 𝚒𝚗𝚝𝚎𝚛𝚊𝚌𝚝𝚒𝚟𝚎 𝚋𝚕𝚘𝚐𝚜, 𝚜𝚘 𝚝𝚑𝚊𝚝 𝚞𝚜𝚎𝚛 𝚌𝚊𝚗 𝚕𝚎𝚊𝚛𝚗 𝚝𝚘 𝚙𝚛𝚒𝚘𝚛𝚒𝚝𝚒𝚜𝚎 𝚝𝚑𝚎𝚒𝚛 𝚖𝚎𝚗𝚝𝚊𝚕 𝚑𝚎𝚊𝚕𝚝𝚑.
20 | 𝚂𝚝𝚊𝚢 𝚑𝚎𝚊𝚕𝚝𝚑𝚢, 𝚜𝚝𝚊𝚢 𝚜𝚊𝚏𝚎.
21 |
22 |
23 |
24 | 𝙸𝚗 𝚝𝚑𝚎 𝚜𝚎𝚌𝚘𝚗𝚍 𝚜𝚎𝚐𝚖𝚎𝚗𝚝 𝙼𝚎𝚍𝚒𝚌𝚊𝚛𝚎 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝙰𝚙𝚙 𝚒𝚜 𝚊 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝙳𝚎𝚟𝚎𝚕𝚘𝚙𝚖𝚎𝚗𝚝 𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝚠𝚑𝚒𝚌𝚑 𝚒𝚜 𝚖𝚊𝚍𝚎 𝚒𝚗 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝚂𝚝𝚞𝚍𝚒𝚘 𝚞𝚜𝚒𝚗𝚐 𝙹𝚊𝚟𝚊 𝚊𝚗𝚍 𝚇𝙼𝙻. 𝙸𝚝 𝚒𝚜 𝚊 𝚞𝚜𝚎𝚛 𝚏𝚛𝚒𝚎𝚗𝚍𝚕𝚢 𝙼𝚎𝚍𝚒𝚌𝚊𝚕 𝚊𝚙𝚙𝚕𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚠𝚑𝚎𝚛𝚎 𝚠𝚎 𝚠𝚘𝚛𝚔 𝚝𝚘𝚠𝚊𝚛𝚍𝚜 𝚢𝚘𝚞𝚛 𝚋𝚎𝚝𝚝𝚎𝚛𝚖𝚎𝚗𝚝 𝚊𝚗𝚍 𝚑𝚘𝚕𝚒𝚜𝚝𝚒𝚌 𝚠𝚎𝚕𝚕 𝚋𝚎𝚒𝚗𝚐.
25 |
26 | 𝙸𝚗 𝚝𝚑𝚒𝚜 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝚊𝚙𝚙 𝚠𝚎 𝚙𝚛𝚘𝚟𝚒𝚍𝚎 𝟺 𝚖𝚊𝚓𝚘𝚛 𝙷𝚎𝚊𝚕𝚝𝚑 𝙲𝚊𝚛𝚎 𝚂𝚎𝚛𝚟𝚒𝚌𝚎𝚜 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚞𝚜𝚎𝚛.
27 | 𝙷𝚎𝚊𝚛𝚝 𝙲𝚊𝚛𝚎, 𝙴𝚢𝚎 𝙲𝚊𝚛𝚎, 𝚂𝚘𝚞𝚕 𝙲𝚊𝚛𝚎, 𝙱𝚕𝚘𝚘𝚍 𝙳𝚘𝚗𝚊𝚝𝚒𝚘𝚗 𝚂𝚎𝚛𝚟𝚒𝚌𝚎.
28 | 𝚆𝚎 𝚑𝚊𝚟𝚎 𝚍𝚒𝚎𝚝 𝚌𝚑𝚊𝚛𝚝 𝚊𝚗𝚍 𝙴𝚡𝚎𝚛𝚌𝚒𝚜𝚎𝚜 𝚏𝚘𝚛 𝚘𝚞𝚛 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝 𝚜𝚎𝚛𝚟𝚒𝚌𝚎𝚜. 𝚆𝚎 𝚊𝚕𝚜𝚘 𝚑𝚊𝚟𝚎 𝚊 𝚝𝚎𝚊𝚖 𝚘𝚏 𝚋𝚎𝚜𝚝 𝚍𝚘𝚌𝚝𝚘𝚛𝚜 𝚏𝚊𝚌𝚒𝚕𝚒𝚝𝚢 𝚏𝚘𝚛 𝚘𝚞𝚛 𝚎𝚊𝚌𝚑 𝚍𝚘𝚖𝚊𝚒𝚗𝚜 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚞𝚜𝚎𝚛 𝚋𝚢 𝚠𝚑𝚒𝚌𝚑 𝚞𝚜𝚎𝚛 𝚌𝚊𝚗 𝚒𝚗𝚜𝚝𝚊𝚗𝚝𝚕𝚢 𝚋𝚘𝚘𝚔 𝚊𝚗 𝚊𝚙𝚙𝚘𝚒𝚗𝚝𝚖𝚎𝚗𝚝 𝚊𝚜 𝚙𝚎𝚛 𝚝𝚑𝚎 𝚍𝚊𝚝𝚎 𝚊𝚗𝚍 𝚝𝚒𝚖𝚎. 𝙸𝚗 𝙱𝚕𝚘𝚘𝚍 𝙳𝚘𝚗𝚊𝚝𝚒𝚘𝚗 𝚂𝚎𝚛𝚟𝚒𝚌𝚎 𝚞𝚜𝚎𝚛 𝚌𝚊𝚗 𝚏𝚒𝚗𝚍 𝚘𝚛 𝚍𝚘𝚗𝚊𝚝𝚎 𝚋𝚕𝚘𝚘𝚍 𝚊𝚜 𝚙𝚎𝚛 𝚝𝚑𝚎 𝚗𝚎𝚎𝚍.
29 | 𝚆𝚎 𝚊𝚕𝚜𝚘 𝚑𝚊𝚟𝚎 𝚊 𝚄𝚜𝚎𝚛 𝙽𝚘𝚝𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 𝚎𝚊𝚌𝚑 𝚜𝚎𝚛𝚟𝚒𝚌𝚎𝚜 𝚠𝚎 𝚙𝚛𝚘𝚟𝚒𝚍𝚎.𝚆𝚎 𝚑𝚊𝚟𝚎 𝚊 𝙲𝚘𝚗𝚝𝚊𝚌𝚝 𝚞𝚜 𝚜𝚎𝚌𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚞𝚜𝚎𝚛 𝚒𝚗𝚝𝚎𝚛𝚊𝚌𝚝𝚒𝚘𝚗 & 𝚏𝚎𝚎𝚍𝚋𝚊𝚌𝚔.
30 |
31 |
32 | ## 𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝚁𝚎𝚙𝚘𝚜𝚒𝚝𝚘𝚛𝚢
33 |
34 | ```
35 | https://github.com/Mohitraj27/Medicare
36 | ```
37 | ## Link to our website
38 | ```
39 | https://leranathon.netlify.app/
40 | ```
41 |
42 | ## 𝚃𝚎𝚌𝚑 𝚂𝚝𝚊𝚌𝚔
43 | [](https://github.com/manankohlii/spacex-launch-data/search?l=html)
44 | [](https://github.com/manankohlii/spacex-launch-data/search?l=css)
45 | [](https://github.com/manankohlii/spacex-launch-data/search?l=javascript)
46 | [](https://github.com/manankohlii/spacex-launch-data/search?l=firebase)
47 | [](https://github.com/manankohlii/spacex-launch-data/search?l=java)
48 | [](https://github.com/manankohlii/spacex-launch-data/search?l=xml)
49 | [](https://github.com/manankohlii/spacex-launch-data/search?l=androidstudio)
50 |
51 | ## 𝚂𝚒𝚝𝚎 𝙼𝚊𝚙
52 |
53 | 𝚃𝚑𝚎 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚠𝚎𝚋𝚜𝚒𝚝𝚎 𝚏𝚘𝚕𝚕𝚘𝚠 𝚝𝚑𝚎 𝚏𝚘𝚕𝚕𝚘𝚠𝚒𝚗𝚐 𝚜𝚝𝚛𝚞𝚌𝚝𝚞𝚛𝚎.
54 |
55 | ```
56 | ├───home
57 | │
58 | └───services
59 |
60 | |──HeartCare
61 | |──EyeCare
62 | │──DentalCare
63 | │──Meditation and Yoga
64 | │──Blood Donation
65 | │──NutritionCare
66 |
67 | ├───about
68 | │
69 | └───doctors
70 | │
71 | ├───Book Appointment
72 | │
73 | └───Reviews
74 | │
75 | └───Blogs
76 | ```
77 | 𝚃𝚑𝚎 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚊𝚙𝚙 𝚏𝚘𝚕𝚕𝚘𝚠 𝚝𝚑𝚎 𝚏𝚘𝚕𝚕𝚘𝚠𝚒𝚗𝚐 𝚜𝚝𝚛𝚞𝚌𝚝𝚞𝚛𝚎.
78 |
79 | ```
80 | ├─── Get Started ├─── Explore Our Website
81 | │
82 | └─── Home Page
83 | └─── Services
84 |
85 | |──HeartCare
86 | |──EyeCare
87 | │──SoulCare
88 | │──Blood Donation
89 |
90 |
91 | ├───Excercises
92 | │
93 | └───Diet Chart
94 | │
95 | ├───Book Appointment
96 | │
97 | └───Reviews
98 | │
99 | └───Blood Donation Portal
100 | ```
101 |
102 | ## 𝚂𝚗𝚊𝚙𝚜𝚑𝚘𝚝𝚜
103 |
104 | # 𝙰𝚗𝚍𝚛𝚘𝚒𝚍 𝙰𝚙𝚙
105 |
106 | 
107 | 
108 |
109 |
110 | https://user-images.githubusercontent.com/87956374/180248497-a4bd2204-7735-4f6a-bfaf-734206bb710c.mp4
111 |
112 | ## 𝚆𝚎𝚋𝚜𝚒𝚝𝚎 𝚒𝚖𝚊𝚐𝚎𝚜
113 | 
114 |
115 | 
116 | 
117 | 
118 | 
119 | 
120 | 
121 | 
122 | 
123 | 
124 | 
125 |
126 | 𝙻𝚎𝚊𝚟𝚎 𝚊 𝚜𝚝𝚊𝚛 𝚒𝚏 𝚢𝚘𝚞 𝚕𝚒𝚔𝚎 𝚘𝚞𝚛 𝚙𝚛𝚘𝚓𝚎𝚌𝚝. 𝚂𝚝𝚊𝚢 𝚜𝚊𝚏𝚎 𝚜𝚝𝚊𝚢 𝚑𝚎𝚊𝚕𝚝𝚑𝚢!
127 |
--------------------------------------------------------------------------------
/hospital website/css/style.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
2 |
3 | :root{
4 | --green:#774487;
5 | --black:#444;
6 | --light-color:#777;
7 | --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
8 | --text-shadow:.4rem .4rem 0 rgba(0, 0, 0, .2);
9 | --border:.2rem solid var(--green);
10 | }
11 |
12 | *{
13 | font-family: 'Poppins', sans-serif;
14 | margin:0; padding: 0;
15 | box-sizing: border-box;
16 | outline: none; border: none;
17 | text-transform: capitalize;
18 | transition: all .2s ease-out;
19 | text-decoration: none;
20 | }
21 |
22 | html{
23 | font-size: 62.5%;
24 | overflow-x: hidden;
25 | scroll-padding-top: 7rem;
26 | scroll-behavior: smooth;
27 | }
28 |
29 | section{
30 | padding:2rem 9%;
31 | }
32 |
33 | section:nth-child(even){
34 | background: #f5f5f5;
35 | }
36 |
37 | .heading{
38 | text-align: center;
39 | padding-bottom: 2rem;
40 | text-shadow: var(--text-shadow);
41 | text-transform: uppercase;
42 | color:var(--black);
43 | font-size: 5rem;
44 | letter-spacing: .4rem;
45 | }
46 |
47 | .heading span{
48 | text-transform: uppercase;
49 | color:var(--green);
50 | }
51 |
52 | .btn{
53 | display: inline-block;
54 | margin-top: 1rem;
55 | padding: .5rem;
56 | padding-left: 1rem;
57 | border:var(--border);
58 | border-radius: .5rem;
59 | box-shadow: var(--box-shadow);
60 | color:var(--green);
61 | cursor: pointer;
62 | font-size: 1.7rem;
63 | background: #fff;
64 | }
65 |
66 | .btn span{
67 | padding:.7rem 1rem;
68 | border-radius: .5rem;
69 | background: var(--green);
70 | color:#fff;
71 | margin-left: .5rem;
72 | }
73 |
74 | .btn:hover{
75 | background: var(--green);
76 | color:#fff;
77 | }
78 |
79 | .btn:hover span{
80 | color: var(--green);
81 | background:#fff;
82 | margin-left: 1rem;
83 | }
84 |
85 | .header{
86 | padding:2rem 9%;
87 | position: fixed;
88 | top:0; left: 0; right: 0;
89 | z-index: 1000;
90 | box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
91 | display: flex;
92 | align-items: center;
93 | justify-content: space-between;
94 | background: #fff;
95 | }
96 |
97 | .header .logo{
98 | font-size: 2.5rem;
99 | color: var(--black);
100 | }
101 |
102 | .header .logo i{
103 | color: var(--green);
104 | }
105 |
106 | .header .navbar a{
107 | font-size: 1.7rem;
108 | color: var(--light-color);
109 | margin-left: 2rem;
110 | }
111 |
112 | .header .navbar a:hover{
113 | color: var(--green);
114 | }
115 |
116 | #menu-btn{
117 | font-size: 2.5rem;
118 | border-radius: .5rem;
119 | background: #eee;
120 | color:var(--green);
121 | padding: 1rem 1.5rem;
122 | cursor: pointer;
123 | display: none;
124 | }
125 |
126 | .home{
127 | display: flex;
128 | align-items: center;
129 | flex-wrap: wrap;
130 | gap:1.5rem;
131 | padding-top: 10rem;
132 | }
133 |
134 | .home .image{
135 | flex:1 1 45rem;
136 | }
137 |
138 | .home .image img{
139 | width: 100%;
140 | }
141 |
142 | .home .content{
143 | flex:1 1 45rem;
144 | }
145 |
146 | .home .content h3{
147 | font-size: 4.5rem;
148 | color:var(--black);
149 | line-height: 1.8;
150 | text-shadow: var(--text-shadow);
151 | }
152 |
153 | .home .content p{
154 | font-size: 1.7rem;
155 | color:var(--light-color);
156 | line-height: 1.8;
157 | padding: 1rem 0;
158 | }
159 |
160 | .icons-container{
161 | display: grid;
162 | gap:2rem;
163 | grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
164 | padding-top: 5rem;
165 | padding-bottom: 5rem;
166 | }
167 |
168 | .icons-container .icons{
169 | border:var(--border);
170 | box-shadow: var(--box-shadow);
171 | border-radius: .5rem;
172 | text-align: center;
173 | padding: 2.5rem;
174 | }
175 |
176 | .icons-container .icons i{
177 | font-size: 4.5rem;
178 | color:var(--green);
179 | padding-bottom: .7rem;
180 | }
181 |
182 | .icons-container .icons h3{
183 | font-size: 4.5rem;
184 | color:var(--black);
185 | padding: .5rem 0;
186 | text-shadow: var(--text-shadow);
187 | }
188 |
189 | .icons-container .icons p{
190 | font-size: 1.7rem;
191 | color:var(--light-color);
192 | }
193 |
194 | .services .box-container{
195 | display: grid;
196 | grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
197 | gap:2rem;
198 | }
199 |
200 | .services .box-container .box{
201 | background:#fff;
202 | border-radius: .5rem;
203 | box-shadow: var(--box-shadow);
204 | border:var(--border);
205 | padding: 2.5rem;
206 | }
207 |
208 | .services .box-container .box i{
209 | color: var(--green);
210 | font-size: 5rem;
211 | padding-bottom: .5rem;
212 | }
213 |
214 | .services .box-container .box h3{
215 | color: var(--black);
216 | font-size: 2.5rem;
217 | padding:1rem 0;
218 | }
219 |
220 | .services .box-container .box p{
221 | color: var(--light-color);
222 | font-size: 1.4rem;
223 | line-height: 2;
224 | }
225 |
226 | .about .row{
227 | display: flex;
228 | align-items: center;
229 | flex-wrap: wrap;
230 | gap:2rem;
231 | }
232 |
233 | .about .row .image{
234 | flex:1 1 45rem;
235 | }
236 |
237 | .about .row .image img{
238 | width: 100%;
239 | }
240 |
241 | .about .row .content{
242 | flex:1 1 45rem;
243 | }
244 |
245 | .about .row .content h3{
246 | color: var(--black);
247 | text-shadow: var(--text-shadow);
248 | font-size: 4rem;
249 | line-height: 1.8;
250 | }
251 |
252 | .about .row .content p{
253 | color: var(--light-color);
254 | padding:1rem 0;
255 | font-size: 1.5rem;
256 | line-height: 1.8;
257 | }
258 |
259 | .doctors .box-container{
260 | display: grid;
261 | grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
262 | gap:2rem;
263 | }
264 |
265 | .doctors .box-container .box{
266 | text-align: center;
267 | background:#fff;
268 | border-radius: .5rem;
269 | border:var(--border);
270 | box-shadow: var(--box-shadow);
271 | padding:2rem;
272 | }
273 |
274 | .doctors .box-container .box img{
275 | height: 20rem;
276 | border:var(--border);
277 | border-radius: .5rem;
278 | margin-top: 1rem;
279 | margin-bottom: 1rem;
280 | }
281 |
282 | .doctors .box-container .box h3{
283 | color:var(--black);
284 | font-size: 2.5rem;
285 | }
286 |
287 | .doctors .box-container .box span{
288 | color:var(--green);
289 | font-size: 1.5rem;
290 | }
291 |
292 | .doctors .box-container .box .share{
293 | padding-top: 2rem;
294 | }
295 |
296 | .doctors .box-container .box .share a{
297 | height: 5rem;
298 | width: 5rem;
299 | line-height: 4.5rem;
300 | font-size: 2rem;
301 | color:var(--green);
302 | border-radius: .5rem;
303 | border:var(--border);
304 | margin:.3rem;
305 | }
306 |
307 | .doctors .box-container .box .share a:hover{
308 | background:var(--green);
309 | color:#fff;
310 | box-shadow: var(--box-shadow);
311 | }
312 |
313 | .book .row{
314 | display: flex;
315 | align-items: center;
316 | flex-wrap: wrap;
317 | gap:2rem;
318 | }
319 |
320 | .book .row .image{
321 | flex:1 1 45rem;
322 | }
323 |
324 | .book .row .image img{
325 | width: 100%;
326 | }
327 |
328 | .book .row form{
329 | flex:1 1 45rem;
330 | background: #fff;
331 | border:var(--border);
332 | box-shadow: var(--box-shadow);
333 | text-align: center;
334 | padding: 2rem;
335 | border-radius: .5rem;
336 | }
337 |
338 | .book .row form h3{
339 | color:var(--black);
340 | padding-bottom: 1rem;
341 | font-size: 3rem;
342 | }
343 |
344 | .book .row form .box{
345 | width: 100%;
346 | margin:.7rem 0;
347 | border-radius: .5rem;
348 | border:var(--border);
349 | font-size: 1.6rem;
350 | color: var(--black);
351 | text-transform: none;
352 | padding: 1rem;
353 | }
354 |
355 | .book .row form .btn{
356 | padding:1rem 4rem;
357 | }
358 |
359 | .review .box-container{
360 | display: grid;
361 | grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
362 | gap:2rem;
363 | }
364 |
365 | .review .box-container .box{
366 | border:var(--border);
367 | box-shadow: var(--box-shadow);
368 | border-radius: .5rem;
369 | padding:2.5rem;
370 | background: #fff;
371 | text-align: center;
372 | position: relative;
373 | overflow: hidden;
374 | z-index: 0;
375 | }
376 |
377 | .review .box-container .box img{
378 | height: 10rem;
379 | width: 10rem;
380 | border-radius: 50%;
381 | object-fit: cover;
382 | border:.5rem solid #fff;
383 | }
384 |
385 | .review .box-container .box h3{
386 | color:#fff;
387 | font-size: 2.2rem;
388 | padding:.5rem 0;
389 | }
390 |
391 | .review .box-container .box .stars i{
392 | color:#fff;
393 | font-size: 1.5rem;
394 | }
395 |
396 | .review .box-container .box .text{
397 | color:var(--light-color);
398 | line-height: 1.8;
399 | font-size: 1.6rem;
400 | padding-top: 4rem;
401 | }
402 |
403 | .review .box-container .box::before{
404 | content: '';
405 | position: absolute;
406 | top:-4rem; left: 50%;
407 | transform:translateX(-50%);
408 | background:var(--green);
409 | border-bottom-left-radius: 50%;
410 | border-bottom-right-radius: 50%;
411 | height: 25rem;
412 | width: 120%;
413 | z-index: -1;
414 | }
415 |
416 | .blogs .box-container{
417 | display: grid;
418 | grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
419 | gap:2rem;
420 | }
421 |
422 | .blogs .box-container .box{
423 | border:var(--border);
424 | box-shadow: var(--box-shadow);
425 | border-radius: .5rem;
426 | padding: 2rem;
427 | }
428 |
429 | .blogs .box-container .box .image{
430 | height: 20rem;
431 | overflow:hidden;
432 | border-radius: .5rem;
433 | }
434 |
435 | .blogs .box-container .box .image img{
436 | height: 100%;
437 | width: 100%;
438 | object-fit: cover;
439 | }
440 |
441 | .blogs .box-container .box:hover .image img{
442 | transform:scale(1.2);
443 | }
444 |
445 | .blogs .box-container .box .content{
446 | padding-top: 1rem;
447 | }
448 |
449 | .blogs .box-container .box .content .icon{
450 | padding: 1rem 0;
451 | display: flex;
452 | align-items: center;
453 | justify-content: space-between;
454 | }
455 |
456 | .blogs .box-container .box .content .icon a{
457 | font-size: 1.4rem;
458 | color: var(--light-color);
459 | }
460 |
461 | .blogs .box-container .box .content .icon a:hover{
462 | color:var(--green);
463 | }
464 |
465 | .blogs .box-container .box .content .icon a i{
466 | padding-right: .5rem;
467 | color: var(--green);
468 | }
469 |
470 | .blogs .box-container .box .content h3{
471 | color:var(--black);
472 | font-size: 3rem;
473 | }
474 |
475 | .blogs .box-container .box .content p{
476 | color:var(--light-color);
477 | font-size: 1.5rem;
478 | line-height: 1.8;
479 | padding:1rem 0;
480 | }
481 |
482 | .footer .box-container{
483 | display: grid;
484 | grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
485 | gap:2rem;
486 | }
487 |
488 | .footer .box-container .box h3{
489 | font-size: 2.5rem;
490 | color:var(--black);
491 | padding: 1rem 0;
492 | }
493 |
494 | .footer .box-container .box a{
495 | display: block;
496 | font-size: 1.5rem;
497 | color:var(--light-color);
498 | padding: 1rem 0;
499 | }
500 |
501 | .footer .box-container .box a i{
502 | padding-right: .5rem;
503 | color:var(--green);
504 | }
505 |
506 | .footer .box-container .box a:hover i{
507 | padding-right:2rem;
508 | }
509 |
510 | .footer .credit{
511 | padding: 1rem;
512 | padding-top: 2rem;
513 | margin-top: 2rem;
514 | text-align: center;
515 | font-size: 2rem;
516 | color:var(--light-color);
517 | border-top: .1rem solid rgba(0, 0, 0, .1);
518 | }
519 |
520 | .footer .credit span{
521 | color:var(--green);
522 | }
523 |
524 |
525 |
526 |
527 |
528 |
529 |
530 |
531 |
532 | /* media queries */
533 | @media (max-width:991px){
534 |
535 | html{
536 | font-size: 55%;
537 | }
538 |
539 | .header{
540 | padding: 2rem;
541 | }
542 |
543 | section{
544 | padding:2rem;
545 | }
546 |
547 | }
548 |
549 | @media (max-width:768px){
550 |
551 | #menu-btn{
552 | display: initial;
553 | }
554 |
555 | .header .navbar{
556 | position: absolute;
557 | top:115%; right: 2rem;
558 | border-radius: .5rem;
559 | box-shadow: var(--box-shadow);
560 | width: 30rem;
561 | border: var(--border);
562 | background: #fff;
563 | transform: scale(0);
564 | opacity: 0;
565 | transform-origin: top right;
566 | transition: none;
567 | }
568 |
569 | .header .navbar.active{
570 | transform: scale(1);
571 | opacity: 1;
572 | transition: .2s ease-out;
573 | }
574 |
575 | .header .navbar a{
576 | font-size: 2rem;
577 | display: block;
578 | margin:2.5rem;
579 | }
580 |
581 | }
582 |
583 | @media (max-width:450px){
584 |
585 | html{
586 | font-size: 50%;
587 | }
588 |
589 | }
--------------------------------------------------------------------------------
/hospital website/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Medicare
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
stay safe, stay healthy
50 |
“The art of medicine consists of amusing the patient while nature cures the disease.”
51 |
contact us
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
140+
65 |
doctors at work
66 |
67 |
68 |
69 |
70 |
1000+
71 |
satisfied consultants
72 |
73 |
74 |
75 |
76 |
50+
77 |
Services
78 |
79 |
80 |
81 |
82 |
80+
83 |
available hospitals
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 | our services
95 |
96 |
97 |
98 |
99 |
100 |
Heart Care
101 |
The term “heart disease” refers to several types of heart conditions that occurs in humnam being. The most common type of heart disease in the United States is coronary artery disease (CAD), which affects the blood flow to the heart. Decreased blood flow can cause a heart attack.
102 |
learn more
103 |
104 |
105 |
106 |
107 |
Eye care
108 |
An eye care professional is an individual who provides a service related to the eyes or vision. It is any healthcare worker involved in eye care, from one with a small amount of post-secondary training to practitioners with a doctoral level of education.
109 |
learn more
110 |
111 |
112 |
113 |
114 |
Dental Care
115 |
Oral hygiene is the practice of keeping one's mouth clean and free of disease and other problems by regular brushing of the teeth and cleaning between the teeth. It is important that oral hygiene be carried out on a regular basis to enable prevention of dental disease and bad breath
116 |
learn more
117 |
118 |
119 |
120 |
121 |
Meditation and Yoga
122 |
Yoga and meditation have both become increasingly popular in the Western world, and practitioners praise their psychological and physical benefits. Current research also suggests that meditating and doing yoga can boost overall well-being and resilience to stress factors. Essentially, meditation is a part of yoga, which is performed after Yoga asana practice.
123 |
learn more
124 |
125 |
126 |
127 |
128 |
Blood Donation
129 |
What is the 4 requirements in donating blood?
130 | Weight: At least 110 lbs (50 kg). Blood volume collected will depend mainly on you body weight. Pulse rate: Between 60 and 100 beats/minute with regular rhythm. Regular blood donation is linked to lower blood pressure and a lower risk for heart attacks. t definitely helps to reduce cardiovascular risk factors
131 |
learn more
132 |
133 |
134 |
135 |
136 |
Nutrition care
137 |
Healthful eating also means replacing foods that contain trans fats, added salt, and sugar with more nutritious options.
138 |
139 | Following a healthful diet has many health benefits, including building strong bones, protecting the heart, preventing disease, and boosting mood.
140 |
141 | This article looks at the top 10 benefits of a healthful diet, and the evidence behind them.
142 |
learn more
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 | about us
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
we take care of your healthy life
165 |
The success of hospitals and healthcare providers depends on the quality of their service. But in an age where most of us look up information online before making almost any decision, a well-designed healthcare website is no less important.
166 |
Our mission is to provide you with best-practices marketing that helps you achieve your specific goals. We don’t measure our success by work that is simply cute or clever. Instead, we create and apply proven, effective and ethical marketing systems that produce quantifiable results.
167 |
learn more
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 | our doctors
181 |
182 |
183 |
184 |
185 |
186 |
Dr. B.K.Singhla
187 |
EXPERT DOCTOR
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
Dr. Asit Kumar Mishra
199 |
PEDIATRICS
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
Dr. Rajiv Kumar
211 |
ANESTHESIOLOGY
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
Dr. Atul Sharma
223 |
MBBS, DNB
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
Dr. Ajay Gupta
235 |
OPHTHALMOLOGY
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
Dr. Manoj Kumar
247 |
PEDIATRICS
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 | book now
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 | Client's Review
294 |
295 |
296 |
297 |
298 |
299 |
John Deo
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
“…Thank you so much for your help. I would highly recommend you and Medicare Group to any healthcare organization that is looking to improve their company. It has been a pleasure working with you…our business is much more organized, thanks to you…your marketing advice has been very beneficial…”
308 |
309 |
310 |
311 |
312 |
Millia Chinong
313 |
314 |
315 |
316 |
317 |
318 |
319 |
Great experience as a first timer. I barely waited to be helped when I checked in. The staff and Dr. Ajay Kumar were all very friendly and helpful. I especially loved how Dr. Ajay really took his time to explain my conditions with me as well as my treatment options. I had a great visit and the doctor’s demeanor has really put me at ease so I highly recommend this clinic.
320 |
321 |
322 |
323 |
324 |
Harry Hudson
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
Great medical office, wonderful and warm experience from start to finish. Appreciate Dr. Sanjay taking time to go over the diagnosis clearly and treatment options. Was referred over by my general doctor and can see why. Highly recommended.
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 | our blogs
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
358 |
Do You Have Bad Breath? Possible reason behind it
359 |
Do you ever feel self-conscious about your breath? Do you wonder if people might be able to smell your mouth when you speak? If you’ve answered yes to either of these questions, you may suffer from bad breath.
360 |
learn more
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
373 |
The complete Herbal guide
374 |
The esthetic appeal of having plants inside your house is the reason the majority of people decide to start gardening indoors. Whether you have researched and planned on them or not, there are additional benefits that are derived when green space is created inside your house.
375 |
learn more
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
388 |
A COVID-19 Paradox
389 |
Albert Einstein once said, “In the middle of difficulty lies opportunity.” And I, being the opportunist that I am, might have taken that a bit too literally. A month and a half before the World Health Organization declared COVID-19 and its causing symptoms
390 |
learn more
391 |
392 |
393 |
394 |
395 |
396 |
397 |
398 |
399 |
400 |
401 |
402 |
451 |
452 |
453 |
455 |
456 |
480 |
481 |
482 |
483 |
484 |
485 |
486 |
487 |
488 |
489 |
490 |
491 |
492 |
493 |
494 |
--------------------------------------------------------------------------------