'use client' import Layout from "@/components/layout/Layout" import Link from "next/link" import { useState } from 'react' export default function Home() { const [isActive, setIsActive] = useState({ status: false, key: 1, }) const handleToggle = (key) => { if (isActive.key === key) { setIsActive({ status: false, }) } else { setIsActive({ status: true, key, }) } } return ( <>
{/* service-style-two */}

Cardiology

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}

Modern Laboratory

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}

Dental Clinic

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}

Neurosurgery

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}

Pediatrics

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}

Experienced Doctors

Amet minim mollit non deserunt ullamco aliqua dolor do amet sint.

{/* Repeat the above block for other service items */}
  • 1
  • 2
  • 3
{/* service-style-two end */} {/* subscibe */}

Subscribe for the exclusive updates!

{/* subscibe end */}
) }