diff --git a/client/src/assets/Cardiology.jpg b/client/src/assets/Cardiology.jpg new file mode 100644 index 0000000..e62c9d1 Binary files /dev/null and b/client/src/assets/Cardiology.jpg differ diff --git a/client/src/assets/Dental.png b/client/src/assets/Dental.png new file mode 100644 index 0000000..d67a436 Binary files /dev/null and b/client/src/assets/Dental.png differ diff --git a/client/src/assets/Dermatology.png b/client/src/assets/Dermatology.png new file mode 100644 index 0000000..37f0439 Binary files /dev/null and b/client/src/assets/Dermatology.png differ diff --git a/client/src/assets/Gastroenterology.jpg b/client/src/assets/Gastroenterology.jpg new file mode 100644 index 0000000..0b36306 Binary files /dev/null and b/client/src/assets/Gastroenterology.jpg differ diff --git a/client/src/assets/Gynaecology(2).png b/client/src/assets/Gynaecology(2).png new file mode 100644 index 0000000..4d3c75b Binary files /dev/null and b/client/src/assets/Gynaecology(2).png differ diff --git a/client/src/assets/Nephrology.png b/client/src/assets/Nephrology.png new file mode 100644 index 0000000..b904b7f Binary files /dev/null and b/client/src/assets/Nephrology.png differ diff --git a/client/src/assets/Neurology(2).png b/client/src/assets/Neurology(2).png new file mode 100644 index 0000000..681dc30 Binary files /dev/null and b/client/src/assets/Neurology(2).png differ diff --git a/client/src/assets/Neurology_image2.webp b/client/src/assets/Neurology_image2.webp new file mode 100644 index 0000000..cd2ad30 Binary files /dev/null and b/client/src/assets/Neurology_image2.webp differ diff --git a/client/src/assets/Oncology.png b/client/src/assets/Oncology.png new file mode 100644 index 0000000..88f628a Binary files /dev/null and b/client/src/assets/Oncology.png differ diff --git a/client/src/assets/Ophthalmology.png b/client/src/assets/Ophthalmology.png new file mode 100644 index 0000000..ac1fafe Binary files /dev/null and b/client/src/assets/Ophthalmology.png differ diff --git a/client/src/assets/Orthopaedics.png b/client/src/assets/Orthopaedics.png new file mode 100644 index 0000000..763be7f Binary files /dev/null and b/client/src/assets/Orthopaedics.png differ diff --git a/client/src/assets/Paediatrics (1).png b/client/src/assets/Paediatrics (1).png new file mode 100644 index 0000000..1ddee5d Binary files /dev/null and b/client/src/assets/Paediatrics (1).png differ diff --git a/client/src/assets/Pulmonology.png b/client/src/assets/Pulmonology.png new file mode 100644 index 0000000..97ce3e7 Binary files /dev/null and b/client/src/assets/Pulmonology.png differ diff --git a/client/src/assets/images.js b/client/src/assets/images.js index 5c15f03..cbc97f2 100644 --- a/client/src/assets/images.js +++ b/client/src/assets/images.js @@ -1,5 +1,5 @@ // General Images -import pic1 from './pic1.jpg' +import pic1 from './pic1.jpg'; import pic2 from './pic2.jpg'; import pic3 from './pic3.jpg'; import pic4 from './pic4.jpg'; @@ -16,20 +16,29 @@ import logo from './logo.png'; import home from './home.png'; import mission from './mission.png'; import vision from './vision.png'; -import history from './history.png'; +import historyImg from './history.png'; // renamed to avoid conflict +import branchLeaves from './branch-leaves.png'; // Medical Images import scalpel from './scalpel.png'; import surgery from './surgery.png'; -import gyanaecology from './gyanaecology.png'; -import urology from './urology.png'; +import gyanaecology from './Gynaecology(2).png' +import urology from './Urology.png' import labscWebp from './labsc.webp'; import labscJpg from './labsc.jpg'; -// Decorative -import branchLeaves from './branch-leaves.png'; +import Dental from './Dental.png'; +import Dermatology from './Dermatology.png'; +import Gastroenterology from './Gastroenterology.jpg'; +import cardiologyImg from './Cardiology.jpg'; +import Nephrology from './Nephrology.png'; +import Neurologywebp from './Neurology(2).png' +import Oncology from './Oncology.png'; +import Orthopaedics from './Orthopaedics.png'; +import Paediatrics from './Paediatrics (1).png'; +import Ophthalmology from './Ophthalmology.png'; -export const images = { +const images = { // General pic1, pic2, @@ -48,7 +57,8 @@ export const images = { home, mission, vision, - history, + historyImg, + branchLeaves, // Medical scalpel, @@ -57,7 +67,16 @@ export const images = { urology, labscWebp, labscJpg, - - // Decorative - branchLeaves + Dental, + Dermatology, + Gastroenterology, + cardiologyImg, + Nephrology, + Neurologywebp, + Oncology, + Orthopaedics, + Paediatrics, + Ophthalmology, }; + +export default images; diff --git a/client/src/assets/urology.png b/client/src/assets/urology.png index c148865..b904b7f 100644 Binary files a/client/src/assets/urology.png and b/client/src/assets/urology.png differ diff --git a/client/src/assets/urology_icon.png b/client/src/assets/urology_icon.png new file mode 100644 index 0000000..c148865 Binary files /dev/null and b/client/src/assets/urology_icon.png differ diff --git a/client/src/components/AboutSection.js b/client/src/components/AboutSection.js index 437c5ec..550182f 100644 --- a/client/src/components/AboutSection.js +++ b/client/src/components/AboutSection.js @@ -1,12 +1,22 @@ import React from 'react'; import styles from './AboutSection.module.css'; +import images from '../assets/images'; -import historyImg from '../assets/history.png'; +const specialties = [ + { title: 'Urology', image: images.urology }, + { title: 'Gynaecology', image: images.gyanaecology }, + { title: 'Cardiology', image: images.cardiologyImg }, + { title: 'Dental', image: images.Dental }, + { title: 'Dermatology', image: images.Dermatology }, + { title: 'Gastroenterology', image: images.Gastroenterology }, + { title: 'Nephrology', image: images.Nephrology }, + { title: 'Neurology', image: images.Neurologywebp }, + { title: 'Oncology', image: images.Oncology }, + { title: 'Orthopaedics', image: images.Orthopaedics }, + { title: 'Paediatrics', image: images.Paediatrics }, + {title: 'Ophthalmology',image: images.Ophthalmology}, +]; -import visionImg from '../assets/vision.png'; -import missionImg from '../assets/mission.png'; -import urologyImg from '../assets/urology.png'; -import gynaeImg from '../assets/gyanaecology.png'; function AboutUs() { return ( @@ -17,68 +27,121 @@ function AboutUs() { About Us
- Welcome to MidCity Hospital Urology and General Nursing Home, a leading healthcare institution renowned for its excellence in urology and gynecology. Our commitment to providing top-notch medical care, state-of-the-art facilities, and compassionate patient care has made us a trusted name in the community. + Welcome to MidCity Hospital Urology and General Nursing Home, a leading healthcare institution + renowned for its excellence in urology and gynecology. Our commitment to providing top-notch + medical care, state-of-the-art facilities, and compassionate patient care has made us a trusted + name in the community.
- Established in 2019, MidCity Hospital has been at the forefront of healthcare innovation. Our founders, Dr. xyz and Dr. abc, envisioned a hospital that not only treated illnesses but also prioritized patient comfort and satisfaction. Over the decades, we have grown into a multifaceted healthcare provider, expanding our services to meet the evolving needs of our patients. - + Established in 2019, MidCity Hospital has been at the forefront of healthcare innovation. Our + founders, Dr. xyz and Dr. abc, envisioned a hospital that not only treated illnesses but also + prioritized patient comfort and satisfaction. Over the decades, we have grown into a + multifaceted healthcare provider, expanding our services to meet the evolving needs of our + patients.
Read More- Our vision is to be a beacon of excellence in the healthcare industry, recognized for our innovative practices, clinical expertise, and unwavering commitment to patient care. We aim to set new standards in healthcare delivery and become the preferred choice for urology and gynecology services. + Our vision is to be a beacon of excellence in the healthcare industry, recognized for our + innovative practices, clinical expertise, and unwavering commitment to patient care. We aim to + set new standards in healthcare delivery and become the preferred choice for urology and + gynecology services.
Read More- Our mission is to deliver exceptional healthcare services with a patient-centered approach. We strive to enhance the quality of life for our patients by offering advanced medical treatments and personalized care in a welcoming environment. + Our mission is to deliver exceptional healthcare services with a patient-centered approach. We + strive to enhance the quality of life for our patients by offering advanced medical treatments + and personalized care in a welcoming environment.
Read More+ {item.title === 'Cardiology' && + 'Our cardiology team offers expert heart care, from diagnostics to treatment for various cardiovascular conditions.'} + {item.title === 'Orthopaedics' && + 'We specialize in treating bone, joint, and muscle issues, helping you regain mobility and live pain-free.'} + {item.title === 'Paediatrics' && + 'Our paediatric department provides compassionate care for infants, children, and adolescents with a focus on wellness.'} + {item.title === 'Neurology' && + 'Expert neurologists provide diagnosis and management of brain and nervous system disorders.'} + {item.title === 'Dermatology' && + 'Offering advanced skincare solutions for acne, eczema, allergies, and aesthetic treatments.'} + {item.title === 'Oncology' && + 'Comprehensive cancer care from screening and diagnosis to chemotherapy and support services.'} + {item.title === 'ENT' && + 'Treating conditions related to ear, nose, and throat with precision and personalized care.'} + {item.title === 'Gastroenterology' && + 'From digestive disorders to liver care, our experts ensure optimal gastrointestinal health.'} + {item.title === 'Ophthalmology' && 'Our ophthalmology department provides expert eye care, from routine checkups to advanced treatments for vision and eye health.'} -
- MidCity Hospital's urology department is staffed by some of the most skilled urologists in the field. We offer comprehensive diagnostic and treatment services for a wide range of urological conditions, including kidney stones, urinary tract infections, prostate issues, and more. -
-- Our gynecology department is dedicated to providing women with the highest quality care throughout all stages of life. From routine check-ups to advanced surgical procedures, our experienced gynecologists are committed to addressing the unique health needs of women. -
-