export interface SiteBrand {
  name: string;
  mission: string;
  tagline: string;
  footerLine: string;
  pillLabel: string;
  subtitle: string;
}

export const EAGLE_ACTION_BRAND: SiteBrand = {
  name: "Eagle Action",
  mission: "Eagle Action",
  tagline:
    "Advocating for Americans at the national, state, and local level.",
  footerLine: "© 2026 Eagle Action",
  pillLabel: "Action",
  subtitle: "501(c)(4)",
};

export const BRAND = EAGLE_ACTION_BRAND;

export const EXTERNAL_LINKS = {
  educationLegal: "https://phyllisschlafly.com",
  eagleBrief: "https://eagleaction.substack.com/",
  donate: "/donate",
} as const;

export type SocialPlatform = "x" | "instagram" | "facebook";

export interface SocialLink {
  readonly platform: SocialPlatform;
  readonly label: string;
  readonly href: string;
}

export const SOCIAL_LINKS: readonly SocialLink[] = [
  {
    platform: "x",
    label: "X",
    href: "https://x.com/eagleactionusa",
  },
  {
    platform: "instagram",
    label: "Instagram",
    href: "https://www.instagram.com/eagleactionusa",
  },
  {
    platform: "facebook",
    label: "Facebook",
    href: "https://www.facebook.com/profile.php?id=61586497471268",
  },
] as const;
