export interface ContactHeroData {
  title: string;
  description: string;
  animation: {
    animation: string;
    duration: number;
    delay: number;
  };
}

export const contactHeroData: ContactHeroData = {
  title: "Have a question? We're just a message away",
  description: "We're here to help\u2014whenever you need us. Whether you have a question, an idea, or you're ready to start your next project, our team is just a message away.",
  animation: {
    animation: "fade",
    duration: 900,
    delay: 300,
  },
};
