export interface FAQ {
  question: string;
  answer: string;
  target: string;
  controls: string;
  expanded: boolean;
}

export interface FAQSectionData {
  subtitle: string;
  title: string;
  description: string;
  faqs: FAQ[];
  faqIcon: string;
  faqIconAlt: string;
}

export const faqData: FAQSectionData = {
  subtitle: "Asked Questions",
  title: "Frequently Asked Questions",
  description: "Our FAQ section covers everything you need to know, from setup and functionality to customization and support.",
  faqIcon: "/assets/images/icon/faq-icon.svg",
  faqIconAlt: "FAQ icon",
  faqs: [
    {
      question: "1. What is a chatbot and how does it work?",
      answer: "A chatbot is an AI-powered tool that simulates human conversation through text or voice. It interacts with users, answers questions, and performs tasks using natural language processing (NLP) and machine learning.",
      target: "collapseOne",
      controls: "collapseOne",
      expanded: true
    },
    {
      question: "2. Do I need any technical skills to set it up?",
      answer: "A chatbot is an AI-powered tool that simulates human conversation through text or voice. It interacts with users, answers questions, and performs tasks using natural language processing (NLP) and machine learning.",
      target: "collapseTwo",
      controls: "collapseTwo",
      expanded: false
    },
    {
      question: "3. Can the chatbot integrate with my website or CRM?",
      answer: "A chatbot is an AI-powered tool that simulates human conversation through text or voice. It interacts with users, answers questions, and performs tasks using natural language processing (NLP) and machine learning.",
      target: "collapseThree",
      controls: "collapseThree",
      expanded: false
    },
    {
      question: "4. Does it support multiple languages?",
      answer: "A chatbot is an AI-powered tool that simulates human conversation through text or voice. It interacts with users, answers questions, and performs tasks using natural language processing (NLP) and machine learning.",
      target: "collapseFour",
      controls: "collapseFour",
      expanded: false
    },
    {
      question: "5. Is live chat available with the bot?",
      answer: "A chatbot is an AI-powered tool that simulates human conversation through text or voice. It interacts with users, answers questions, and performs tasks using natural language processing (NLP) and machine learning.",
      target: "collapseFive",
      controls: "collapseFive",
      expanded: false
    }
  ]
};
