export interface HelpHeroData {
  title: string;
  description: string;
  titleAnimation: {
    animation: string;
    duration: number;
    delay: number;
  };
  descriptionAnimation: {
    animation: string;
    duration: number;
    delay: number;
  };
}

export const helpHeroData: HelpHeroData = {
  title: "Frequently asked questions",
  description: "Got questions? We've got answers. Our FAQ section is here to help you find quick solutions, clear up any confusion, and guide you through everything you need to know about our services.",
  titleAnimation: {
    animation: "fade",
    duration: 900,
    delay: 300,
  },
  descriptionAnimation: {
    animation: "fade",
    duration: 900,
    delay: 400,
  },
};
