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

export interface ContactHeroData {
  items: ContactHeroItem[];
}

export const contactHeroData: ContactHeroData = {
  items: [
    {
      id: 1,
      title: "Get in touch - we'd love to hear from you",
      description:
        "We're always excited to connect with forward-thinking brands, businesses, and individuals ready to take their digital presence to the next level. Whether you have a project in mind, need expert guidance",
    },
  ],
};
