diff --git a/src/pages/Services.tsx b/src/pages/Services.tsx new file mode 100644 index 0000000..026081c --- /dev/null +++ b/src/pages/Services.tsx @@ -0,0 +1,70 @@ +import { Link } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { + Heart, Brain, Bone, Eye, Stethoscope, Baby, Activity, Pill, Check +} from "lucide-react"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const services = [ + { icon: Heart, title: "Cardiology", desc: "Complete heart and cardiovascular care including diagnostics, interventional procedures, and ongoing management.", features: ["ECG & Echocardiography", "Cardiac Catheterization", "Heart Failure Management"], gradient: "from-rose-500/20 to-pink-500/20" }, + { icon: Brain, title: "Neurology", desc: "Expert diagnosis and treatment of neurological conditions including stroke, epilepsy, and neurodegenerative diseases.", features: ["EEG & Brain Mapping", "Stroke Prevention", "Migraine Treatment"], gradient: "from-purple-500/20 to-indigo-500/20" }, + { icon: Bone, title: "Orthopedics", desc: "Advanced musculoskeletal care from sports injuries to joint replacement with cutting-edge surgical techniques.", features: ["Joint Replacement Surgery", "Sports Medicine", "Physical Rehabilitation"], gradient: "from-amber-500/20 to-orange-500/20" }, + { icon: Eye, title: "Ophthalmology", desc: "Comprehensive eye care from routine vision exams to complex surgical procedures using advanced laser technology.", features: ["LASIK & Refractive Surgery", "Cataract Treatment", "Glaucoma Management"], gradient: "from-sky-500/20 to-cyan-500/20" }, + { icon: Stethoscope, title: "Primary Care", desc: "Your healthcare home for preventive care, chronic disease management, and general wellness needs.", features: ["Annual Wellness Exams", "Chronic Disease Management", "Vaccinations & Screenings"], gradient: "from-teal-500/20 to-emerald-500/20" }, + { icon: Baby, title: "Pediatrics", desc: "Compassionate, specialized care for children from newborn through adolescence in a family-friendly setting.", features: ["Well-Child Visits", "Developmental Assessments", "Childhood Immunizations"], gradient: "from-pink-500/20 to-rose-500/20" }, + { icon: Activity, title: "Diagnostic Imaging", desc: "State-of-the-art imaging services including MRI, CT, X-ray, and ultrasound with rapid results.", features: ["MRI & CT Scans", "Digital X-Ray", "Ultrasound Imaging"], gradient: "from-emerald-500/20 to-teal-500/20" }, + { icon: Pill, title: "Pharmacy Services", desc: "On-site pharmacy with personalized medication management and convenient prescription services.", features: ["Medication Consultation", "Prescription Management", "Home Delivery Available"], gradient: "from-indigo-500/20 to-violet-500/20" }, +]; + +export default function ServicesPage() { + return ( +
+
+ + {/* ── HERO ── */} +
+
+ Medical Services +

Our Medical Services

+

We provide comprehensive healthcare services using the latest medical technology and evidence-based practices.

+
+
+ + {/* ── SERVICES GRID ── */} +
+
+
+ {services.map((s, i) => ( + +
{String(i + 1).padStart(2, "0")}
+ +
+ +
+

{s.title}

+

{s.desc}

+
+ {s.features.map((f, fi) => ( +
+ + {f} +
+ ))} +
+ +
+
+ ))} +
+
+
+ +
+ ); +} \ No newline at end of file