/** 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: "home" },
  { label: "Solutions", href: "solutions" },
  { label: "Pricing", href: "pricing" },
  { label: "Testimonial", href: "testimonial" },
  { label: "News", href: "news" },
];
