export type BlogGridPost = {
  id: number;
  href: string;
  image: string;
  imageAlt: string;
  title: string;
  author: string;
  date: string;
  aosDelay: number;
  videoUrl?: string;
};

export type BlogClassicPost = {
  id: number;
  href: string;
  image: string;
  imageAlt: string;
  title: string;
  author: string;
  date: string;
};

export type BlogStyle2Post = {
  id: number;
  href: string;
  image: string;
  imageAlt: string;
  title: string;
};

export type BlogStyle3Post = {
  id: number;
  href: string;
  image: string;
  imageAlt: string;
  title: string;
};

export type BlogRecentPost = {
  id: number;
  href: string;
  title: string;
  date: string;
};

export type BlogListMetaLink = {
  label: string;
  href?: string;
};

export type BlogListPost = {
  id: number;
  href: string;
  image: string;
  imageAlt: string;
  author: string;
  date: string;
  meta: BlogListMetaLink[];
  title: string;
  excerpt: string;
  aosDelay: number;
  videoUrl?: string;
};

export type BlogListSidebar = {
  searchPlaceholder: string;
  categories: { label: string; href: string }[];
  tags: { label: string; href: string }[];
  newsletter: {
    text: string;
    emailPlaceholder: string;
    buttonLabel: string;
  };
};

export const blogGridPosts: BlogGridPost[] = [
  {
    id: 1,
    href: "/post-video",
    image: "/assets/images/blog/blog3-1.png",
    imageAlt: "Predictive Analytics Blog",
    title: "How a Solid Design System Can Transform Your SaaS Product",
    author: "Admin",
    date: "April 3, 2026",
    aosDelay: 300,
    /** Blender Foundation "Sintel" trailer (demo embed; replace with your own URL). */
    videoUrl: "https://www.youtube.com/embed/eRsGyueVLvQ",
  },
  {
    id: 2,
    href: "/post-image",
    image: "/assets/images/blog/blog3-2.png",
    imageAlt: "AI Trends Blog",
    title: "The Power of User-Centered Design in Web App Development",
    author: "Admin",
    date: "April 7, 2026",
    aosDelay: 500,
  },
  {
    id: 3,
    href: "/post-audio",
    image: "/assets/images/blog/blog3-3.png",
    imageAlt: "Conversational AI Blog",
    title: "Why Your Business Needs a Strong Digital Presence in 2026",
    author: "Admin",
    date: "April 6, 2026",
    aosDelay: 700,
  },
  {
    id: 4,
    href: "/post-gallery",
    image: "/assets/images/blog/blog3-4.png",
    imageAlt: "Predictive Analytics Blog",
    title: "How a Solid Design System Can Transform Your SaaS Product",
    author: "Admin",
    date: "April 3, 2026",
    aosDelay: 300,
  },
  {
    id: 5,
    href: "/post-image",
    image: "/assets/images/blog/blog3-5.png",
    imageAlt: "AI Trends Blog",
    title: "The Power of User-Centered Design in Web App Development",
    author: "Admin",
    date: "April 7, 2026",
    aosDelay: 500,
  },
  {
    id: 6,
    href: "/post-audio",
    image: "/assets/images/blog/blog3-6.png",
    imageAlt: "Conversational AI Blog",
    title: "Why Your Business Needs a Strong Digital Presence in 2026",
    author: "Admin",
    date: "April 6, 2026",
    aosDelay: 700,
  },
];

/** Blog Standard / list layout (`BlogList`) */
export const blogListPosts: BlogListPost[] = [
  {
    id: 1,
    href: "/post-video",
    image: "/assets/images/blog/blog1-2.png",
    imageAlt: "Streamline Workflow Blog Post Image",
    author: "Admin",
    date: "April 3, 2026",
    meta: [
      { label: "Dashboard", href: "#" },
      { label: "Admin", href: "#" },
      { label: "June 25, 2026", href: "#" },
      { label: "0 Comments", href: "#" },
    ],
    title: "Streamline Workflow in Minutes with Our SaaS vs. Traditional",
    excerpt:
      "Our SaaS platform is designed to simplify complex workflows, boost productivity, and help your business scale faster than ever. With intuitive features, seamless integrations",
    aosDelay: 300,
    /** Blender Foundation "Sintel" trailer (demo embed; replace with your own URL). */
    videoUrl: "https://www.youtube.com/embed/eRsGyueVLvQ",
  },
  {
    id: 2,
    href: "/post-image",
    image: "/assets/images/blog/blog1-5.png",
    imageAlt: "Top 2026 SaaS Trends Blog Post Image",
    author: "Admin",
    date: "April 7, 2026",
    meta: [
      { label: "Design", href: "#" },
      { label: "Admin", href: "#" },
      { label: "June 24, 2026", href: "#" },
      { label: "3 Comments", href: "#" },
    ],
    title: "Top 2026 SaaS Trends & Productivity Features for Businesses",
    excerpt:
      "Our SaaS platform is designed to simplify complex workflows, boost productivity, and help your business scale faster than ever. With intuitive features, seamless integrations",
    aosDelay: 500,
  },
  {
    id: 3,
    href: "/post-audio",
    image: "/assets/images/blog/blog1-4.png",
    imageAlt: "Secure SaaS Platform Blog Post Image",
    author: "Admin",
    date: "April 11, 2026",
    meta: [
      { label: "SaaS", href: "#" },
      { label: "Admin", href: "#" },
      { label: "June 23, 2026", href: "#" },
      { label: "0 Comments", href: "#" },
    ],
    title: "Why Businesses Trust Our Secure, Scalable SaaS Platform",
    excerpt:
      "Our SaaS platform is designed to simplify complex workflows, boost productivity, and help your business scale faster than ever. With intuitive features, seamless integrations",
    aosDelay: 700,
  },
];

export const blogListSidebar: BlogListSidebar = {
  searchPlaceholder: "Search",
  categories: [
    { label: "AI & Technology", href: "#" },
    { label: "Dashboard Design", href: "#" },
    { label: "Mobile Apps Development", href: "#" },
    { label: "Product Design", href: "#" },
    { label: "SaaS Landing Template", href: "#" },
    { label: "UX/UI Design", href: "#" },
  ],
  tags: [
    { label: "Dashboard", href: "#" },
    { label: "Design", href: "#" },
    { label: "Mobile", href: "#" },
    { label: "SaaS", href: "#" },
    { label: "Software", href: "#" },
    { label: "Technology", href: "#" },
  ],
  newsletter: {
    text: "Stay ahead of the curve with the latest product updates, expert tips",
    emailPlaceholder: "Enter your email",
    buttonLabel: "Subscribe now",
  },
};
