import { useState, useEffect } from "react"; import { Button } from "@/components/ui/button"; import { Card, CardContent } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Link } from "react-router-dom"; import { ChevronLeft, ChevronRight, MapPin, Phone, Mail, Clock, Shield, Heart, Stethoscope, Baby, Activity, Zap, Award, Users, Star, ArrowRight, CheckCircle } from "lucide-react"; export default function HomePage() { const images = [ "/assets/gallery/Reception.webp", "/assets/gallery/hospital_building.jpeg", "/assets/gallery/Waiting Lobby.jpg", "/assets/gallery/OT 2.jpg", "/assets/gallery/General Ward.jpg" ]; const [currentImage, setCurrentImage] = useState(0); useEffect(() => { const interval = setInterval(() => { setCurrentImage((prev) => (prev + 1) % images.length); }, 5000); return () => clearInterval(interval); }, [images.length]); const prevSlide = () => { setCurrentImage((prev) => (prev - 1 + images.length) % images.length); }; const nextSlide = () => { setCurrentImage((prev) => (prev + 1) % images.length); }; const services = [ { icon: , title: "Critical Care", description: "24/7 ICU & Critical Care Unit with advanced monitoring systems and specialized staff.", color: "text-red-600 bg-red-50" }, { icon: , title: "Surgical Services", description: "General and laparoscopic surgical procedures performed by our expert surgeons.", color: "text-blue-600 bg-blue-50" }, { icon: , title: "Maternity Care", description: "Comprehensive maternity services with prenatal, delivery, and postnatal care.", color: "text-pink-600 bg-pink-50" }, { icon: , title: "Diagnostics", description: "Advanced diagnostic services including ECG, X-Ray, Sonography, and laboratory tests.", color: "text-purple-600 bg-purple-50" }, { icon: , title: "Emergency Services", description: "24/7 emergency care for immediate medical attention when needed most.", color: "text-orange-600 bg-orange-50" }, ]; const stats = [ { number: "5000+", label: "Happy Patients", icon: }, { number: "15+", label: "Expert Doctors", icon: }, { number: "24/7", label: "Emergency Care", icon: }, { number: "10+", label: "Years Experience", icon: } ]; return (
{/* Hero Section */}
{/* Preload next image for smoother transitions */}
{/* Simplified Background Effects - Reduced for Performance */}
{/* Additional Gradient Overlay for Better Text Readability */}
{/* Arrow Buttons */}
Kalpesh Hospital Logo

Kalpesh{" "} Hospital

Care You Can Believe In

{/* Director Card */} {/* Background Pattern */}
Dr. Yogesh Choudhary

Dr. Yogesh Choudhary

MBBS, MD (Medicine), CCEBDM

FICP, FIACM

Hospital Director

Advanced Healthcare for Everyone

24/7 Emergency Care
Expert Medical Team
Modern Technology
{/* Stats Section */}
{stats.map((stat, index) => (
{stat.icon}
{stat.number}
{stat.label}
))}
{/* About Section */}
About Us

About Kalpesh Hospital

Kalpesh Hospital in Alwar is committed to providing exceptional healthcare services with a focus on patient comfort and advanced medical care.

Our team of experienced doctors and modern facilities ensure that you receive the best medical attention for all your healthcare needs.

We are approved under RGHS and MAA Yojana, offering both OPD and IPD services to make quality healthcare accessible to everyone.

24/7 Emergency Care
Modern Equipment

Contact Information

Address

H-165, Ambedkar Nagar, Alwar

Phone (Landline)

0144-2946365

Phone (Mobile)

8690304805

Email

kalpeshhospitalalwar@gmail.com

{/* Services Section */}
Our Services

Comprehensive Healthcare Services

We provide a wide range of medical services with state-of-the-art facilities and expert care

{services.map((service, index) => (
{service.icon}

{service.title}

{service.description}

))}
{/* Insurance & Coverage */}
Coverage

Treatment Coverage

We provide treatment under various government schemes and insurance plans

We Provide Treatment Under:

MAA Yojana

Free treatment for eligible patients

RGHS

Approved for OPD & IPD services

TPA & Insurance

Cashless treatment available

); }