purityselect/resources/js/views/pages/home/HelpArea.vue
2024-10-25 01:05:27 +05:00

129 lines
7.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!-- <section id="landingFAQ" class="section-py bg-body landing-faq">
<div class="container">
<h3 class="text-center mb-1"><span class="section-title">Why Choose Us ?</span></h3>
<div class="row gy-5">
<div class="col-lg-5">
<div class="text-center">
<img :src="'assets/images/whychoose.png'" class="d-none d-lg-block" style="width: 450px;">
</div>
</div>
<div class="col-lg-7">
<v-list lines="three" class="mt-10" style="box-shadow: 0 0 19px 0 #ccc;">
<v-list-item :title="'Find a Doctor '"
subtitle="Have a searchable directory where patients can search for doctors by location, specialty, accepted insurance, etc."></v-list-item>
<v-list-item :title="'Make an Appointment'"
subtitle=" Allow patients to book appointments with doctors directly through the site. Build in integration with practice management software."></v-list-item>
<v-list-item :title="'Telehealth Services'"
subtitle="Offer patients the ability to have a video visit with a doctor through the site. This allows access to care without traveling to an office."></v-list-item>
<v-list-item :title="'Health Information/Education'"
subtitle="Articles, videos, animations on health conditions, treatments, wellness topics to educate patients."></v-list-item>
<v-list-item :title="'Symptom Checker'"
subtitle="An interactive tool patients can use to input their symptoms and get possible conditions or suggested next steps."></v-list-item>
</v-list>
</div>
</div>
</div>
</section> -->
<!-- <section id="landingFAQ" class="section-py bg-body landing-faq"> -->
<!-- <div class="container">
<div class="text-center mb-3 pb-1">
<span class="badge bg-label-primary">FAQ</span>
</div>
<h3 class="text-center mb-1">Frequently asked <span class="section-title">questions</span></h3>
<p class="text-center mb-5 pb-3">Browse through these FAQs to find answers to commonly asked questions.</p>
<div class="row gy-5">
<div class="col-lg-7">
<div class="accordion" id="accordionExample">
<div class="card accordion-item active">
<h2 class="accordion-header" id="headingOne">
<button type="button" class="accordion-button" data-bs-toggle="collapse" data-bs-target="#accordionOne"
aria-expanded="true" aria-controls="accordionOne">
How do I make an appointment?
</button>
</h2>
<div id="accordionOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="accordion-body">
You can easily schedule appointments online through our portal 24/7. Select your preferred doctor,
choose a date/time that works best, and book your visit. New patients should create an account first.
</div>
</div>
</div>
<div class="card accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button type="button" class="accordion-button collapsed" data-bs-toggle="collapse"
data-bs-target="#accordionTwo" aria-expanded="false" aria-controls="accordionTwo">
What if I need to cancel or reschedule?
</button>
</h2>
<div id="accordionTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Log in to your patient portal and click on My Appointments. You can cancel or reschedule existing
appointments with just a few clicks. Be sure to do so at least 24 hours in advance.
</div>
</div>
</div>
<div class="card accordion-item">
<h2 class="accordion-header" id="headingThree">
<button type="button" class="accordion-button collapsed" data-bs-toggle="collapse"
data-bs-target="#accordionThree" aria-expanded="false" aria-controls="accordionThree">
What telehealth platforms do you use?
</button>
</h2>
<div id="accordionThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">
We conduct secure video visits through both Zoom and Doxy.me. You just need a smartphone, tablet, or
computer with a webcam and internet connection. Virtual visits have the same quality care from the
comfort of your home.
</div>
</div>
</div>
<div class="card accordion-item">
<h2 class="accordion-header" id="headingFour">
<button type="button" class="accordion-button collapsed" data-bs-toggle="collapse"
data-bs-target="#accordionFour" aria-expanded="false" aria-controls="accordionFour">
Can I get prescription refills online?
</button>
</h2>
<div id="accordionFour" class="accordion-collapse collapse" aria-labelledby="headingFour"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Yes, you can request prescription refills electronically through your patient portal anytime. Once
approved by your doctor, well send the prescription to your preferred pharmacy. Allow 48-72 hours for
processing.
</div>
</div>
</div>
<div class="card accordion-item">
<h2 class="accordion-header" id="headingFive">
<button type="button" class="accordion-button collapsed" data-bs-toggle="collapse"
data-bs-target="#accordionFive" aria-expanded="false" aria-controls="accordionFive">
Do I need to create an account first?
</button>
</h2>
<div id="accordionFive" class="accordion-collapse collapse" aria-labelledby="headingFive"
data-bs-parent="#accordionExample">
<div class="accordion-body">
Yes, we ask new patients to set up an account prior to making that initial appointment. This securely
stores your medical information and enables convenient access to our patient portal offerings.
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="text-center">
<img src="assets/images/faq.png" alt="faq boy with logos" class="faq-image d-none d-lg-block"
style="width: 80%;" />
</div>
</div>
</div>
</div> -->
<!-- </section> -->
</template>