export interface HelpHeroItem {
  id: number;
  title: string;
  description: string;
}

export interface HelpHeroData {
  items: HelpHeroItem[];
}

export const helpHeroData: HelpHeroData = {
  items: [
    {
      id: 1,
      title: "We've got the answers you're looking for",
      description:
        "Have questions about our services, process, or how we work? You're in the right place. Our Frequently Asked Questions section is designed to give you quick, clear answers to the things clients ask us most.",
    },
  ],
};
