/** Primary navigation — crm-html/index.html desktop + mobile menu. */

export interface NavItem {
  label: string;
  href: string;
  children?: NavItem[];
}

export const primaryNav: NavItem[] = [
  { label: "Home", href: "/" },
  { label: "Solutions", href: "/solutions" },
  { label: "Pricing", href: "/pricing" },
  { label: "Help", href: "/help" },
  { label: "News", href: "/blog" },
  { label: "Contact", href: "/contact" },
];
