export interface ProjectItem {
  id: number;
  imageSrc: string;
  imageAlt: string;
  title: string;
  href: string;
  titleAttribute: string;
}

export interface ProjectsData {
  subtitle: string;
  title: string;
  description: string;
  projects: ProjectItem[];
  viewMoreButton: {
    text: string;
    href: string;
    icon: {
      src: string;
      alt: string;
    };
  };
}

export const projectsData: ProjectsData = {
  subtitle: "500+ Pre-Made Templates",
  title: "Save Time with Over 500 Designer-Ready Templates",
  description: "Speed up your design process with over 500 professionally crafted, ready-to-use templates.",
  projects: [
    {
      id: 1,
      imageSrc: "/assets/images/project/pro1-1.png",
      imageAlt: "Task Management SaaS Landing Page Template",
      title: "Task Management SaaS Landing Pages",
      href: "#",
      titleAttribute: "Task Management SaaS Landing Page Template",
    },
    {
      id: 2,
      imageSrc: "/assets/images/project/pro1-2.png",
      imageAlt: "Next-Gen Tools SaaS Landing Page Template",
      title: "Next-Gen Tools SaaS Landing Pages",
      href: "#",
      titleAttribute: "Next-Gen Tools SaaS Landing Page Template",
    },
    {
      id: 3,
      imageSrc: "/assets/images/project/pro1-3.png",
      imageAlt: "Analytics SaaS Landing Page Template",
      title: "Analytics SaaS Landing Pages",
      href: "#",
      titleAttribute: "Analytics SaaS Landing Page Template",
    },
    {
      id: 4,
      imageSrc: "/assets/images/project/pro1-4.png",
      imageAlt: "Digital Marketing Agency Landing Page Template",
      title: "Digital Marketing Agency Landing Pages",
      href: "#",
      titleAttribute: "Digital Marketing Agency Landing Page Template",
    },
    // Repeated items for carousel
    {
      id: 5,
      imageSrc: "/assets/images/project/pro1-1.png",
      imageAlt: "Task Management SaaS Landing Page Template",
      title: "Task Management SaaS Landing Pages",
      href: "#",
      titleAttribute: "Task Management SaaS Landing Page Template",
    },
    {
      id: 6,
      imageSrc: "/assets/images/project/pro1-2.png",
      imageAlt: "Next-Gen Tools SaaS Landing Page Template",
      title: "Next-Gen Tools SaaS Landing Pages",
      href: "#",
      titleAttribute: "Next-Gen Tools SaaS Landing Page Template",
    },
  ],
  viewMoreButton: {
    text: "View More Templates",
    href: "#",
    icon: {
      src: "/assets/images/icon/arrow.svg",
      alt: "Arrow icon",
    },
  },
};
