%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/forge/takeaseat.eco-n-tech.co.uk/pages/
Upload File :
Create Path :
Current File : //home/forge/takeaseat.eco-n-tech.co.uk/pages/help.vue

<template>
  <div class="page-wrapper">
    <PageHeader classObject='bg-yellow'>
      <img class="relative z-20 mb-8"
        src="~assets/images/logo-white-small.svg" alt="Takeaseat" />
      <h1 class="relative z-20 text-5xl lg:text-7xl font-bold">Help</h1>
    </PageHeader>
    <section v-if="Object.keys(faqs).length > 0"
      class="bg-gray py-20 px-8 mb-8">
      <div class="max-w-4xl mx-auto w-full">
        <header class="text-center mb-20">
          <h1 class="text-5xl font-bold">FAQs</h1>
        </header>
        <div v-for="(section, title) in faqs" class="mb-10" v-bind:key="title">
          <h1 class="text-2xl font-bold mb-6">{{ title }}</h1>
          <div v-for="question in section" v-bind:key="question.question">
            <h2 class="text-xl font-bold mb-6">{{ question.question}}</h2>
            <div class="text-content mb-6"
              v-html="question.answer" />
          </div>
        </div>
      </div>
    </section>
  </div>
</template>

<script>
export default {
  head () {
    return {
      titleTemplate: 'Help | %s',
    }
  },
  data() {
    return {
      faqs: {
        'Privacy': [
          {
            question: "Will you share my information with anyone?",
            answer: "<p>We never share your information with any external sources. We hold any information about you securely on our server. By signing up to the platform you give your consent to do this.</p><p>We are very careful about protecting your data and you can read more about this by visiting our <a class=\"font-bold\" href=\"/terms-conditions\">T&C’s</a> and <a class=\"font-bold\" href=\"/privacy-policy\">privacy policy</a>.</p>",
          },
          {
            question: "Are my therapy sessions confidential?",
            answer: "<p>All of our therapists are registered with a governing body and uphold the highest ethical standards. They are bound by this to offer you full confidentiality about your sessions. The only exceptions would be if you disclose criminal activity or are a danger to yourself and others. In this instance they would be required to contact the relevant authorities. </p><p>Substance abuse or use of any illegal drugs would not be considered as criminal activity.</p>",
          },
          {
            question: "Is my account private? ",
            answer: "Yes, your account is private and cannot be viewed by anyone. We use your email for your login. We advise you keep your log in details secure so no third party can access your account.</p>",
          },
        ],
        'Paying Cancelling': [
          {
            question: "How do I cancel – reschedule an appointment?",
            answer: "<p>As long as there is more than 48 hours before your session starts, you can cancel or reschedule the session by accessing your account and selecting the session you want to change.</p>",
          },
          {
            question: "Do I have to pay for a missed appointment?",
            answer: "<p>If you are within 48 hours of the session the therapist would not have enough time to fill the booking you reserved. They will need to be compensated for their time. It’s only fair.</p>",
          },
          {
            question: "How do I pay",
            answer: "<p>When setting up an account we ask for your credit or debit card details to pay for sessions. We take the payment 48 hours before the session is due to begin and use the same card for any subsequent sessions booked.</p><p>If we are unable to take the payment from your card you will receive a notification to update your card details. If the payment is unable to be completed the session will be cancelled.</p><p>We use Stripe to handle all of our payments. It’s a highly secure GDPR complaint system that ensures we do not need to store your card details.</p>",
          },
        ],
        'General': [
          {
            question: "How old do I have to be to book a therapist",
            answer: "<p>When using our site, you need to be 18 years of age or older to book a session with a therapist.</p>",
          },
          {
            question: "Website terms and conditions",
            answer: "<p>Please read <a class=\"font-bold\" href='/terms-conditions'>these</a> carefully before using the site</p>",
          },
          {
            question: "Can I contact the therapist before booking my first session?",
            answer: "<p>This isn’t currently possible. Your first session is an opportunity to ask the therapist questions about how you will work together and what you would like help with. This is also where you will get a chance to see if the chemistry is right between you.</p><p>If you don’t feel that the therapist is the right one for you this is ok. Finding the right therapist can take time and we try to bring them to life as much as possible, to ensure you get the right one first time. Sometimes you just don’t feel it. We have plenty of other therapists who will be the right one for you.</p>",
          },
          {
            question: "How do I contact you?",
            answer: "<p>You can get in touch with us by using the contact form <a class=\"font-bold\" href=\"/contact-us\">Here</a> or you can mail us <a class=\"font-bold\" href=\"mailto:support@takeaseat.co.uk\">support@takeaseat.co.uk</a>. Alternatively use the chat function at the bottom right of the screen.</p>",
          },
        ],
        'How it works': [
          {
            question: "Booking a session",
            answer: "<p>Simply select what is worrying you from the homepage drop down, input your postcode and search available therapists. Once you have found someone you would like to talk to, check a day and time that suits you, select how you want to do this and book. You will then be asked for some key details to create an account including payment details.</p><p>Once completed you will receive an email confirmation of the session. The details of your booking will be passed to the therapist, who may contact you for some further information.</p>",
          },
          {
            question: "How do I reset my password?",
            answer: "<p>Use the forgot password button on the log in page, Doh!</p>",
          },
          {
            question: "How do I cancel my account?",
            answer: "<p>Email <a class=\"font-bold\" href=\"mailto:support@takeaseat.co.uk\">support@takeaseat.co.uk</a> to cancel your account. Not sure why you would want to though</p>",
          },
          {
            question: "Can I change my registered email address?",
            answer: "<p>Yes, just log into your account and update any details you want. Make sure you keep them safe.</p>",
          },
          {
            question: "I didn’t receive an email to confirm my booking",
            answer: "<p>You can log into your account and see your bookings at any time. Double check it didn’t go into your junk mail. If it did please mark it as safe so it goes into your inbox in future. If you can’t log in to your account mail us at <a class=\"font-bold\" href=\"mailto:support@takeaseat.co.uk\">support@takeaseat.co.uk</a>.</p>",
          },
          {
            question: "What do I need to sign up?",
            answer: "<p>A name, a valid email address and credit or debit card to pay for sessions. You don’t need to input these details until you are ready to book with one of our therapists.</p>",
          },
          {
            question: "How much does it cost to use?",
            answer: "<p>What you see is what you pay, any service charges are already included in the price.</p>",
          },
        ],
        'About Therapy': [
          {
            question: "Should I do online sessions?",
            answer: "<p>With the advances in technology it is now much easier to access therapy online and many therapists are now trained in delivering it this way. There are many benefits to online therapy and a few things to consider when deciding on whether to choose this option.</p><p>Convenience, you don’t have to commute to a therapy room, you can do it in your PJ’s if you want. You can even do it on holiday if you have a phone, internet connection and privacy.</p><p>Choice – you are no longer restricted to just your area. Now the therapy world is your oyster and you can find the right person for you literally anywhere.</p><p>Internet connection is a primary consideration. You want to ensure you have a stable connection to ensure there are no disruptions to your session. It can be very frustrating when you get a frozen screen or garbled speech.</p><p>Privacy, do you have somewhere you can go and not be disturbed when having a video session. What you discuss is private and you want to ensure that this is not compromised.</p>",
          },
          {
            question: "What is an integrative therapist",
            answer: "<p>Integrative means that the therapist has been trained in multiple modalities of therapy and Integrates them depending on what you are presenting with. They have typically been trained in Humanistic, CBT and psychodynamic approaches to name a few. This means the therapist has a number of different ways to work with you to ensure you get the right result. A key advantage of integrative therapy is its flexibility and focus on the whole of an individual. Making it arguably a more adaptable and comprehensive approach than a single form of therapy.</p>",
          },
          {
            question: "How long should I stay in therapy?",
            answer: "<p>This depends on how you feel. Some people only need short term therapy of 6-12 sessions. Others find so many benefits to therapy that they stay for many years. There are no right and wrongs here, you can do it for as long as you feel it is beneficial. You can even try different therapists for different things.</p>",
          },
          {
            question: "Are all your therapists qualified?",
            answer: "<p>All of our therapists are fully qualified, insured and members of a governing body ensuring they adhere to the highest ethical standards. We do a full verification to also ensure they undergo regular supervision and engage in continued professional development. We want you to have the peace of mind that whoever you speak to, is of the highest quality and been thoroughly checked by our team.</p>",
          },
          {
            question: "Can I change my therapist?",
            answer: "<p>You can change your therapist at any time. For you to get the best out of therapy it is important you feel comfortable and that the chemistry is there. The relationship between you and your therapist will become one of the most important you have so it is essential you feel comfortable to share. </p>",
          },
          {
            question: "How to complain about a therapist",
            answer: "<p>If you want to make a complaint about a therapist please get in touch with us so <a class=\"font-bold\" href=\"mailto:support@takeaseat.co.uk\">support@takeaseat.co.uk</a>. If you feel there has been a breach of confidence or ethical boundary crossed we will refer the complaint to their governing ethical body.</p>",
          },
        ],
      },
    }
  }
}
</script>

Zerion Mini Shell 1.0