export interface ProjectItem {
  id: number;
  title: string;
  url: string;
  img: string;
  tags: string[];
  colClass: string;
  delay: number;
}

export interface ProjectData {
  subTitle: string;
  title: string;
  projects: ProjectItem[];
}

export const projectData: ProjectData = {
  subTitle: "Latest Projects",
  title: "Ideas transformed into impactful products",
  projects: [
    {
      id: 1,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-1.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-4",
      delay: 300,
    },
    {
      id: 2,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-2.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-8",
      delay: 400,
    },
    {
      id: 3,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-3.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-8",
      delay: 300,
    },
    {
      id: 4,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-4.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-4",
      delay: 400,
    },
    {
      id: 5,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-5.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-4",
      delay: 300,
    },
    {
      id: 6,
      title: "Hoodie Design and Branding",
      url: "#",
      img: "/assets/images/event/project1-6.png",
      tags: ["(printing)", "(graphic)"],
      colClass: "col-lg-8",
      delay: 400,
    },
  ],
};
