export interface NavPost {
  type: "prev" | "next";
  title: string;
  thumb: string;
  thumbAlt: string;
  url: string;
  btnIcon: string;
  btnAlt: string;
}

export const blogNavigationData: NavPost[] = [
  {
    type: "prev",
    title: "Enhancing Help Desk Efficiency Through Collaboration",
    thumb: "assets/images/author/thumb.webp",
    thumbAlt: "Previous post author thumbnail image",
    url: "#",
    btnIcon: "assets/images/icon/arrow1-5.svg",
    btnAlt: "Arrow icon for previous post navigation",
  },
  {
    type: "next",
    title: "Integrating Your CRM Marketing Tools A Complete Guide",
    thumb: "assets/images/author/thumb2.webp",
    thumbAlt: "Previous post author thumbnail image",
    url: "#",
    btnIcon: "assets/images/icon/arrow.svg",
    btnAlt: "Arrow icon for previous post navigation",
  },
];
