"use client"; import React, { useState, useEffect } from "react"; const services = [ { id: 0, title: "Excellent infection prevention", text: "Lorem ipsum dolor sit amet, conse ctetur adipiscing eliteiusmod tempor incididunt", icon: "/assets/imgs/icon/icon-6.png", link: "service-details.html", }, { id: 1, title: "Health patients comprehensive", text: "From its medieval origins to the digital era , learn everything there is to know", icon: "/assets/imgs/icon/icon-2.png", link: "service-details.html", }, { id: 2, title: "Pediatric Hematology Oncology", text: "Creation timelines for the standard lorem ipsum passage vary, with some citing the", icon: "/assets/imgs/icon/icon-3.png", link: "service-details.html", }, { id: 3, title: "Care Pediatric & Medicine", text: "Letraset's dry-transfer sheets, and later entered the digital world via Aldus", icon: "/assets/imgs/icon/icon-4.png", link: "service-details.html", }, { id: 4, title: "Labor & Delivery: The Birthplace", text: "Some claim lorem ipsum threatens to promote design over content, while others defend", icon: "/assets/imgs/icon/icon-5.png", link: "service-details.html", }, { id: 5, title: "Urogynecology & Pelvic Health", text: "Generally, lorem ipsum is best suited to keeping templates from looking bare or", icon: "/assets/imgs/icon/icon-6.png", link: "service-details.html", }, ]; const MedicalServices = () => { const [activeTab, setActiveTab] = useState(0); const handleTabClick = (e: React.MouseEvent, id: number) => { e.preventDefault(); setActiveTab(id); }; return (
{/* Background Overlay */}
{/* Decorative Elements - 4 Left, 4 Right */}
shape
shape
{/*
shape
*/}
shape
shape
shape
{/*
shape
*/}
shape
WELCOME

Driving Client Success

It is a long established fact that a reader will be distracted the readable content of
a page when looking at layout the point of using lorem the is Ipsum less normal distribution of letters.

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

{service.title}

{service.text}

))}
); }; export default MedicalServices;