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 { ArrowRight, Heart, Brain, Bone, Eye, Stethoscope, Baby, ShieldCheck, Clock, Award, Users, Star, Quote, CheckCircle } from "lucide-react"; import Header from "@/components/Header"; import Footer from "@/components/Footer"; const services = [ { icon: Heart, title: "Cardiology", desc: "Advanced heart and cardiovascular care with state-of-the-art diagnostics and treatment.", gradient: "from-rose-500/20 to-pink-500/20" }, { icon: Brain, title: "Neurology", desc: "Expert neurological care for conditions affecting the brain, spine, and nervous system.", gradient: "from-purple-500/20 to-indigo-500/20" }, { icon: Bone, title: "Orthopedics", desc: "Comprehensive bone, joint, and musculoskeletal treatment for optimal mobility.", gradient: "from-amber-500/20 to-orange-500/20" }, { icon: Eye, title: "Ophthalmology", desc: "Complete eye care from routine exams to advanced surgical procedures.", gradient: "from-sky-500/20 to-cyan-500/20" }, { icon: Stethoscope, title: "Primary Care", desc: "Your first point of contact for preventive care, wellness, and general health needs.", gradient: "from-teal-500/20 to-emerald-500/20" }, { icon: Baby, title: "Pediatrics", desc: "Specialized healthcare for infants, children, and adolescents in a warm environment.", gradient: "from-pink-500/20 to-rose-500/20" }, ]; const doctors = [ { name: "Dr. Sarah Chen", specialty: "Cardiology", exp: "15+ years experience", rating: 4.9, gradient: "from-sky-400 to-teal-400" }, { name: "Dr. James Okafor", specialty: "Neurology", exp: "20+ years experience", rating: 4.8, gradient: "from-teal-400 to-emerald-400" }, { name: "Dr. Emily Rivera", specialty: "Orthopedics", exp: "12+ years experience", rating: 4.9, gradient: "from-indigo-400 to-sky-400" }, { name: "Dr. Michael Patel", specialty: "Pediatrics", exp: "18+ years experience", rating: 4.7, gradient: "from-violet-400 to-indigo-400" }, ]; const testimonials = [ { initials: "JM", name: "Jennifer M.", text: "The care I received was exceptional. Dr. Chen took the time to explain everything and made me feel completely at ease throughout my treatment.", rating: 5 }, { initials: "SK", name: "Steven K.", text: "After years of chronic pain, the orthopedics team gave me my life back. The facility is world-class and the staff genuinely cares.", rating: 5 }, { initials: "RL", name: "Rachel L.", text: "As a parent, finding a pediatrician I trust was crucial. Dr. Patel is wonderful with my children and always goes above and beyond.", rating: 5 }, ]; const insuranceProviders = ["BlueCross BlueShield", "Aetna", "UnitedHealthcare", "Cigna", "Kaiser Permanente", "Humana"]; export default function IndexPage() { return (
{/* ── HERO ── */}
Trusted Healthcare Since 2009

Your Health, Our Priority

Comprehensive, compassionate healthcare for the whole family. Board-certified specialists delivering exceptional care with the latest medical technology.

{[ { icon: ShieldCheck, label: "Board Certified" }, { icon: Clock, label: "24/7 Care" }, { icon: Award, label: "15+ Years" }, { icon: Users, label: "50K+ Patients" }, ].map((b, i) => (
{b.label}
))}
{/* ── SERVICES OVERVIEW ── */}
Our Services

Comprehensive Medical Services

From preventive care to specialized treatments, we offer a full spectrum of medical services under one roof.

{services.map((s, i) => (

{s.title}

{s.desc}

Learn More
))}
{/* ── FEATURED DOCTORS ── */}
Expert Team

Meet Our Specialists

Experienced, compassionate physicians dedicated to your well-being.

{doctors.map((d, i) => (
{d.name.split(" ").map(n => n[0]).join("")}

{d.name}

{d.specialty}

{d.exp}

{Array.from({ length: 5 }).map((_, si) => ( ))} {d.rating}
))}
{/* ── TESTIMONIALS ── */}
Patient Stories

What Our Patients Say

{testimonials.map((t, i) => (
{Array.from({ length: t.rating }).map((_, si) => ( ))}

{t.text}

{t.initials}
{t.name}
))}
{/* ── STATS ── */}
{[ { value: "50,000+", label: "Patients Treated" }, { value: "15+", label: "Years of Excellence" }, { value: "45+", label: "Specialists" }, { value: "98%", label: "Satisfaction Rate" }, ].map((s, i) => (
{s.value}
{s.label}
))}
{/* ── INSURANCE ── */}

We Accept Major Insurance Providers

{insuranceProviders.map((name, i) => (
{name}
))}
{/* ── CTA ── */}

Schedule Your Visit Today

Experience compassionate, world-class healthcare. Our team is ready to serve you.

); }