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

Online Consultations With
Qualified Doctors

Make an Appointment
{/* video end */} {/* team-section */}
Our Team

Meet our experienced doctors
for the best treatment

Black Marvin

Medical Assistant

Eleanor Pena

Doctor

Arlene Maccy

Nursing Assistant

Jenny Wilson

Senior Doctor
{/* team-section */} {/* subscibe */}

Subscribe for the exclusive updates!

{/* subscibe end */} setOpen(false)} />
) }