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

$49.99

Monthly
  • Virtual visit
  • Up to 30 minutes
  • Securely conducted online
  • Discuss and receive guidance
  • Rate varies on specific needs
  • Healthcare provider Consult
Choose Plan
Annual Physical

$149.99

Monthly
  • In-person examination
  • Up to 60 minutes
  • Various tests and assessments
  • In-person service
  • Rate varies on specific needs
  • Healthcare provider Consult
Choose Plan
Extended Consultation

$99.99

Monthly
  • Virtual visit
  • Up to 60 minutes
  • Discuss more details
  • Receive in-depth guidance
  • Rate varies on specific needs
  • Healthcare provider Consult
Choose Plan
{/* gallery end */} {/* subscibe */}

Subscribe for the exclusive updates!

{/* subscibe end */}
) }