export interface HeroContent {
  subtitle: string;
  title: string;
  description: string;
}

export const heroData: HeroContent[] = [
  {
    subtitle: "Feel free to reach out",
    title: "Connect with us",
    description:
      "We’d love to hear from you! Whether you have a question, want to discuss a project, or just want to say hello, our team is here to help.",
  },
];
