export interface NavItem {
  label: string;
  href: string;
}

export interface Logo {
  light: string;
  dark: string;
  alt: string;
}

export interface HeaderData {
  logo: Logo;
  navigation: NavItem[];
  searchButton: {
    icon: string;
    alt: string;
  };
  ctaButton: {
    label: string;
    href: string;
  };
  hamburgerAlt: string;
}

export const headerData: HeaderData = {
  logo: {
    light: "/assets/images/logo.svg",
    dark: "/assets/images/logo-dark.svg",
    alt: "Sasico SaaS Analytics Logo",
  },
  navigation: [
    { label: "Home", href: "/" },
    { label: "About", href: "/about" },
    { label: "Solutions", href: "/solutions" },
    { label: "Pricing", href: "/pricing" },
    { label: "News", href: "/blog" },
    { label: "Contact", href: "/contact" },
  ],
  searchButton: {
    icon: "/assets/images/icon/search.svg",
    alt: "Search Icon",
  },
  ctaButton: {
    label: "Sign Up",
    href: "#",
  },
  hamburgerAlt: "Toggle Menu",
};
