export interface PaginationItem {
  id: string;
  type: "previous" | "next" | "page";
  label?: string;
  url: string;
  icon?: string;
  iconAlt?: string;
}

export const blogPaginationData: PaginationItem[] = [
  {
    id: "prev",
    type: "previous",
    url: "#",
    icon: "assets/images/icon/arrow1-1.svg",
    iconAlt: "Previous page navigation arrow",
  },
  {
    id: "page-1",
    type: "page",
    label: "1",
    url: "#",
  },
  {
    id: "page-2",
    type: "page",
    label: "2",
    url: "#",
  },
  {
    id: "page-3",
    type: "page",
    label: "3",
    url: "#",
  },
  {
    id: "next",
    type: "next",
    url: "#",
    icon: "assets/images/icon/arrow1-2.svg",
    iconAlt: "Next page navigation arrow",
  },
];
