/**
 * Navigation link definitions for Eagle Action.
 *
 * Primary links appear directly in the main nav bar. More links share one
 * lower-frequency navigation group so the header stays stable as the site
 * gains new content sections.
 */

export interface NavLink {
  label: string;
  href: string;
  external?: boolean;
}

export const NAV_LINKS: NavLink[] = [
  { label: "Home", href: "/" },
  { label: "Abigail Circles", href: "/abigail-circles" },
  { label: "Our History", href: "/timeline" },
  { label: "Events", href: "/events" },
  { label: "Chapters", href: "/chapters" },
];

/** Lower-frequency site sections rendered under the header's More menu. */
export const MORE_LINKS: NavLink[] = [
  { label: "Issues", href: "/issues" },
  { label: "Endorsements", href: "/endorsements" },
];

export const UTILITY_LINKS: NavLink[] = [
  { label: "Eagle Brief", href: "https://eagleaction.substack.com/", external: true },
  { label: "Eagle Forum Education & Legal", href: "https://phyllisschlafly.com", external: true },
];

/** All in-site links in display order for surfaces that do not group More. */
export const HEADER_NAV_LINKS: NavLink[] = [...NAV_LINKS, ...MORE_LINKS];
