export interface OnepageNavItem {
  label: string;
  target: string;
}

export interface HeaderOnepageData {
  logo: {
    light: string;
    dark: string;
    alt: string;
  };
  navigation: OnepageNavItem[];
  searchButton: {
    icon: string;
    alt: string;
  };
  ctaButton: {
    label: string;
    href: string;
  };
  hamburgerAlt: string;
}

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