export type SectionTitleContent = {
  eyebrow?: string;
  title: string;
  description?: string;
};

export type HomeHeroContent = {
  title: string;
  subtitle: string;
  primaryCta: { label: string; href: string };
  secondaryCta: { label: string; href: string };
};

export type HomeBrandItem = { name: string; logoSrc: string; alt: string };

export type HomeFeatureItem = {
  title: string;
  description: string;
  iconSrc?: string;
};
