export interface BlogHeroData {
  title: string;
  description: string;
}

export interface BlogPost {
  id: number;
  title: string;
  author: string;
  date: string;
  image: string;
  url: string;
  delay: number;
}

export interface BlogData {
  hero: BlogHeroData;
  posts: BlogPost[];
}

export const blogData: BlogData = {
  hero: {
    title: "From vision to execution - read our journey (news & blog)",
    description:
      "Stay informed with the latest trends, insights, and innovations in the digital world through our News & Blog section. From expert tips on design and development to updates on industry trends and success stories from our projects.",
  },
  posts: [
    {
      id: 1,
      title: "How a Solid Design System Can Transform Your SaaS Product",
      author: "Admin",
      date: "July 25, 2025",
      image: "/assets/images/blog/blog1-1.png",
      url: "/blog-details",
      delay: 300,
    },
    {
      id: 2,
      title: "The Power of User-Centered Design in Web App Development",
      author: "Admin",
      date: "July 24, 2025",
      image: "/assets/images/blog/blog1-2.png",
      url: "/blog-details",
      delay: 500,
    },
    {
      id: 3,
      title: "Why Your Business Needs a Strong Digital Presence in 2025",
      author: "Admin",
      date: "July 23, 2025",
      image: "/assets/images/blog/blog1-3.png",
      url: "/blog-details",
      delay: 700,
    },
    {
      id: 4,
      title: "The Power of Branding Building Identity in a Digital World",
      author: "Admin",
      date: "July 22, 2025",
      image: "/assets/images/blog/blog1-4.png",
      url: "/blog-details",
      delay: 300,
    },
    {
      id: 5,
      title: "Behind the Scenes: How We Built an Award-Winning Project",
      author: "Admin",
      date: "July 20, 2025",
      image: "/assets/images/blog/blog1-5.png",
      url: "/blog-details",
      delay: 500,
    },
    {
      id: 6,
      title: "From Wireframes to Reality: Our Design Process Explained",
      author: "Admin",
      date: "July 15, 2025",
      image: "/assets/images/blog/blog1-6.png",
      url: "/blog-details",
      delay: 700,
    },
    {
      id: 7,
      title: "How a Solid Design System Can Transform Your SaaS Product",
      author: "Admin",
      date: "July 13, 2025",
      image: "/assets/images/blog/blog1-7.png",
      url: "/blog-details",
      delay: 300,
    },
    {
      id: 8,
      title: "The Power of User-Centered Design in Web App Development",
      author: "Admin",
      date: "July 13, 2025",
      image: "/assets/images/blog/blog1-8.png",
      url: "/blog-details",
      delay: 500,
    },
    {
      id: 9,
      title: "Why Your Business Needs a Strong Digital Presence in 2025",
      author: "Admin",
      date: "July 13, 2025",
      image: "/assets/images/blog/blog1-9.png",
      url: "/blog-details",
      delay: 700,
    },
  ],
};
