export interface RelatedPost {
  id: number;
  directionClass: string;
  href: string;
  title: string;
  ctaLabel: string;
  thumb: string;
  thumbAlt: string;
  arrowIcon: string;
  arrowAlt: string;
}

export interface RelatedPostsData {
  posts: RelatedPost[];
}

export const relatedPostsData: RelatedPostsData = {
  posts: [
    {
      id: 1,
      directionClass: "post-prev",
      href: "#",
      title: "Why Your Business Needs a Strong Digital Presence in 2025",
      ctaLabel: "Read more",
      thumb: "/assets/images/author/thumb.webp",
      thumbAlt: "Previous post author thumbnail image",
      arrowIcon: "/assets/images/icon/arrow.svg",
      arrowAlt: "Arrow icon for previous post navigation",
    },
    {
      id: 2,
      directionClass: "post-next",
      href: "#",
      title: "How a Solid Design System Can Transform Your SaaS Product",
      ctaLabel: "Read more",
      thumb: "/assets/images/author/thumb2.webp",
      thumbAlt: "Next post author thumbnail image",
      arrowIcon: "/assets/images/icon/arrow.svg",
      arrowAlt: "Arrow icon for next post navigation",
    },
  ],
};
