export interface FAQItem {
  id: number;
  headingId: string;
  collapseId: string;
  question: string;
  answer: string;
  expanded: boolean;
}

export interface FAQColumn {
  id: number;
  wrapperClass: string;
  accordionId: string;
  aosDelay: number;
  items: FAQItem[];
}

export interface FAQData {
  columns: FAQColumn[];
  icon: string;
  iconAlt: string;
}

const commonAnswer =
  "We offer end-to-end solutions including product design, UX/UI development, web & mobile app development, branding, digital marketing, and business strategy consulting tailored";

export const faqData: FAQData = {
  icon: "/assets/images/icon/faq-icon.svg",
  iconAlt: "FAQ icon",
  columns: [
    {
      id: 1,
      wrapperClass: "col-lg-6",
      accordionId: "accordionExample",
      aosDelay: 500,
      items: [
        {
          id: 1,
          headingId: "headingOne",
          collapseId: "collapseOne",
          question: "1. What services does your startup ?",
          answer: commonAnswer,
          expanded: true,
        },
        {
          id: 2,
          headingId: "headingTwo",
          collapseId: "collapseTwo",
          question: "2. Do you build custom SaaS platforms from scratch?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 3,
          headingId: "headingThree",
          collapseId: "collapseThree",
          question: "3. 10. How do we get started?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 4,
          headingId: "headingFour",
          collapseId: "collapseFour",
          question: "4. How do you ensure data security and compliance?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 5,
          headingId: "headingFive",
          collapseId: "collapseFive",
          question: "5. What industries do you work with?",
          answer: commonAnswer,
          expanded: false,
        },
      ],
    },
    {
      id: 2,
      wrapperClass: "col-lg-6",
      accordionId: "accordionExample-a",
      aosDelay: 500,
      items: [
        {
          id: 6,
          headingId: "headingOne-a",
          collapseId: "collapseOne-a",
          question: "6. What is your typical project timeline?",
          answer: commonAnswer,
          expanded: true,
        },
        {
          id: 7,
          headingId: "headingTwo-a",
          collapseId: "collapseTwo-a",
          question: "7. How do you handle project communication?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 8,
          headingId: "headingThree-a",
          collapseId: "collapseThree-a",
          question: "8. Do you offer post-launch support ?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 9,
          headingId: "headingFour-a",
          collapseId: "collapseFour-a",
          question: "9. What makes your agency different others?",
          answer: commonAnswer,
          expanded: false,
        },
        {
          id: 10,
          headingId: "headingFive-a",
          collapseId: "collapseFive-a",
          question: "10. What industries do you specialize in?",
          answer: commonAnswer,
          expanded: false,
        },
      ],
    },
  ],
};
