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

export interface HeaderData {
  logo: {
    src: string;
    darkSrc: string;
    alt: string;
    darkAlt: string;
    href: string;
  };
  navItems: NavItem[];
  searchIcon: string;
  ctaButton: {
    label: string;
    href: string;
  };
}

export const headerData: HeaderData = {
  logo: {
    src: "/assets/images/logo.svg",
    darkSrc: "/assets/images/dark-logo.svg",
    alt: "Sasico IT Solutions Logo",
    darkAlt: "Sasico IT Solutions Dark Logo",
    href: "/",
  },
  navItems: [
    { label: "Home", href: "/" },
    { label: "About", href: "/about" },
    { label: "Solutions", href: "/solutions" },
    { label: "Works", href: "/works" },
    { label: "Resources", href: "/resources" },
    { label: "Contact", href: "/contact" },
  ],
  searchIcon: "/assets/images/icon/search.svg",
  ctaButton: {
    label: "Free Quote",
    href: "#",
  },
};
