import React from "react"; import Header from "../../../../components/header/Header"; import Footer from "../../../../components/footer/Footer"; import CopyRight from "../../../../components/footer/CopyRight"; import FaqForm from "@/components/form/FaqForm"; import Image from "next/image"; import { FaqContent } from "@/data/faqs"; export const metadata = { title: 'Faq Details || Deski-Saas & Software Nextjs Template', description: `Unleash the full potential of your software projects with our SaaS-focused Next.js template. Create engaging blogs, showcase your talented team, set up an online shop, provide helpful FAQs, and offer exceptional services with our feature-rich solution. Elevate your SaaS and software development with ease and drive growth. Try it now and take your projects to new heights.`, } const FaqDetails = ({ params }) => { const faq = FaqContent.filter((elm)=>elm.id==params.id)[0] || FaqContent[0] return (
{/* End Page SEO Content */}
{/* End Header */} {/* ============================================= Fancy Hero One ============================================== */}

Help & Support

Advice and answers from our expert and proffesional deski Team

{/* /.fancy-hero-one */} {/* ============================================= FAQS ============================================== */}
shape
media

{faq.title}

Written by {faq.writterName}
{faq.date}
{/* End .d-flex */}

To activate 2FA you will need an authenticator app installed on your smartphone. This could be Google Authenticator or Authy, both available for iOs and Android.

  • Go to ‘Account settings’ from your Ticket Tailor dashboard.
  • Under the heading ‘Two-factor authentication’ click the button labelled ‘Activate 2FA’.
  • From your authenticator app on your phone, add a new login and it will ask you to scan the QR code shown here. Scan the QR code.
  • The app will generate a code. Enter that code in the box below and click 'Activate 2FA'.

Please note: If you lose access to your 2FA app you will need to contact customer support to go through a security questionnaire and have your account unlocked.

Did this answer your question?

{/* /.reaction-wrapper */}
{/* /.article-details */}
{/* /.article-preview */}
{/* /.faqs-all-qus */}
{/* /.all-faqs */}
{/* /.faqs-inner-page */} {/* /.theme-footer-one */}
); }; export default FaqDetails;