export interface FAQItem {
  id: number;
  question: string;
  answer: string;
  isOpen?: boolean;
}

export interface FAQData {
  subtitle: string;
  title: string;
  description: string;
  buttonText: string;
  buttonHref: string;
  buttonIcon: {
    src: string;
    alt: string;
  };
  faqs: FAQItem[];
  arrowIcon: {
    src: string;
    alt: string;
  };
}

export const faqData: FAQData = {
  subtitle: "Fast answers",
  title: "Still Curious? Find Your Answers Below",
  description: "We've gathered the most common inquiries to help you get started quickly.",
  buttonText: "Get a Quote",
  buttonHref: "#",
  buttonIcon: {
    src: "/assets/images/icon/arrow.svg",
    alt: "",
  },
  faqs: [
    {
      id: 1,
      question: "What is an AI website builder?",
      answer: "An AI website builder is a platform that combines simplicity with powerful features like real-time collaboration, smart task organization, and <a href=\"#\">seamless integrations</a> — all in a clean, intuitive interface.",
      isOpen: true,
    },
    {
      id: 2,
      question: "Do I need coding skills to use it?",
      answer: "No coding skills are required. Our AI builder allows you to design professional websites using intuitive tools without writing a single line of code.",
    },
    {
      id: 3,
      question: "How long does it take to build a website?",
      answer: "You can launch a simple website in minutes using our pre-designed templates, while more complex projects may take longer depending on customization.",
    },
    {
      id: 4,
      question: "Can I customize the designs?",
      answer: "Absolutely! You can fully customize templates using our drag-and-drop editor, changing layouts, colors, fonts, and more.",
    },
    {
      id: 5,
      question: "Is my website mobile-friendly?",
      answer: "Yes, all websites built with our AI platform are fully responsive and optimized for mobile devices.",
    },
  ],
  arrowIcon: {
    src: "/assets/images/icon/arrow6.svg",
    alt: "Arrow icon for accordion toggle",
  },
};
