export interface WorksProject {
  id: number;
  tags: { label: string; className: string }[];
  title: string;
  titleHref: string;
  description: string;
  image: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  listItems: string[];
  buttonLabel: string;
  buttonHref: string;
  buttonIcon: string;
  aosDelay: number;
  cardClassName?: string;
}

export interface WorksProjectsData {
  projects: WorksProject[];
}

export const worksProjectsData: WorksProjectsData = {
  projects: [
    {
      id: 1,
      tags: [
        { label: "IT Solutions", className: "tag" },
        { label: "Security", className: "year m-0" },
      ],
      title: "Analytics tools for actionable business insights.",
      titleHref: "#",
      description:
        "Automating customer service operations with intelligent chatbots enhance",
      image: {
        src: "/assets/images/event/pro2-1.png",
        alt: "Analytics Tools for Actionable Business Insights",
        width: 520,
        height: 250,
      },
      listItems: [
        "User-Centric Design",
        "Cloud-Ready Infrastructure",
        "Support & Maintenance",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 300,
    },
    {
      id: 2,
      tags: [
        { label: "Cloud Migration", className: "tag" },
        { label: "2024", className: "year m-0" },
      ],
      title: "Helping businesses securely migrate their infrastructure.",
      titleHref: "#",
      description:
        "Guiding organizations through strategic technology adoption to modernize",
      image: {
        src: "/assets/images/event/pro2-2.png",
        alt: "Cloud Migration Infrastructure Project",
        width: 500,
        height: 380,
      },
      listItems: [
        "Database Optimization",
        "System Automation",
        "API Development",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 400,
    },
    {
      id: 3,
      tags: [
        { label: "Custom Software", className: "tag" },
        { label: "2024", className: "year m-0" },
      ],
      title: "Designing and developing tailor-made software",
      titleHref: "#",
      description:
        "Enabling remote teams work efficiently through secure, cloud-integrated.",
      image: {
        src: "/assets/images/event/pro2-3.png",
        alt: "Custom Software Development Project",
        width: 500,
        height: 380,
      },
      listItems: [
        "Development Process",
        "Quality Assurance & Testing",
        "Future-Ready Solutions",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 500,
    },
    {
      id: 4,
      tags: [
        { label: "Security", className: "tag" },
        { label: "2025", className: "year m-0" },
      ],
      title: "Cybersecurity & Data Protection",
      titleHref: "#",
      description:
        "Implementing advance security protocols to safeguard digital assets and ensure.",
      image: {
        src: "/assets/images/event/pro2-4.png",
        alt: "Cybersecurity and Data Protection Project",
        width: 500,
        height: 380,
      },
      listItems: [
        "Performance Optimization",
        "Monitoring & Support",
        "On-Time Project Delivery",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 600,
    },
    {
      id: 5,
      tags: [
        { label: "AI-Powered", className: "tag" },
        { label: "2025", className: "year m-0" },
      ],
      title: "AI-Powered Customer Support Chatbots",
      titleHref: "#",
      description:
        "Seamlessly transition enterprise systems to the cloud with our comprehensive.",
      image: {
        src: "/assets/images/event/pro2-5.png",
        alt: "AI-Powered Customer Support Chatbots Project",
        width: 500,
        height: 380,
      },
      listItems: [
        "AI-Powered Analytics",
        "Blockchain Integration",
        "Advanced UI/UX Design",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 700,
    },
    {
      id: 6,
      tags: [
        { label: "Data Analytics", className: "tag" },
        { label: "2025", className: "year m-0" },
      ],
      title: "Data Analytics & Business Intelligence",
      titleHref: "#",
      description:
        "Turning raw data into actionable insights to support strategic decision-making",
      image: {
        src: "/assets/images/event/pro2-6.png",
        alt: "Data Analytics and Business Intelligence Project",
        width: 500,
        height: 380,
      },
      listItems: [
        "Smart CRM Solutions",
        "E-commerce Development",
        "Future-Driven Innovation",
      ],
      buttonLabel: "View projects",
      buttonHref: "#",
      buttonIcon: "/assets/images/icon/arrow.svg",
      aosDelay: 800,
      cardClassName: "mb-0",
    },
  ],
};
