export const PRIMARY_LINKS: any = [ { __typename: "ComponentButton", buttonLabel: "Home", href: "/", showButtonAs: "text", target: "_self", preserveQueryParameters: false, }, { __typename: "ComponentButton", buttonLabel: "Products", href: "/products", showButtonAs: "text", target: "_self", preserveQueryParameters: false, }, { __typename: "ComponentButtonGroup", title: "Services", items: { items: [ { __typename: "ComponentButton", buttonLabel: "Internet", href: "/internet", showButtonAs: "text", target: "_self", }, { __typename: "ComponentButton", buttonLabel: "Phone", href: "/phone", showButtonAs: "text", target: "_self", }, ], }, }, ]; export const UTILITY_LINKS: any = [ { __typename: "ComponentButton", buttonLabel: "Residential", href: "/residential", showButtonAs: "text", target: "_self", }, { __typename: "ComponentButton", buttonLabel: "Business", href: "/business", showButtonAs: "text", target: "_self", }, ]; export const ACCOUNT_LINKS: any = [ { __typename: "ComponentButtonGroup", title: "My Account", items: { items: [ { __typename: "ComponentButton", buttonLabel: "Profile", href: "/profile", showButtonAs: "text", target: "_self", }, ], }, }, ]; export const SUPPORT_LINKS: any = [ { __typename: "ComponentButtonGroup", title: "Support", items: { items: [ { __typename: "ComponentButton", buttonLabel: "Help", href: "/help", showButtonAs: "text", target: "_self", }, ], }, }, ];