export interface ProjectTag {
  label: string;
  href: string;
  isYear?: boolean;
}

export interface Project {
  id: number;
  tags: ProjectTag[];
  title: string;
  titleHref: string;
  description: string;
  ctaLabel: string;
  ctaHref: string;
  image: {
    src: string;
    alt: string;
  };
}

export interface ProjectsData {
  subtitle: string;
  title: string;
  highlightText: string;
  description: string;
  projects: Project[];
}

export const projectsData: ProjectsData = {
  subtitle: "Recent Projects",
  title: "Showcasing Our Recent Cutting-",
  highlightText: "Edge Projects",
  description:
    "Our latest projects showcase the innovative solutions and cutting-edge technologies deliver clients.",
  projects: [
    {
      id: 1,
      tags: [
        { label: "IT Solutions", href: "#" },
        { label: "Security", href: "#", isYear: true },
      ],
      title: "AI-Powered Customer Support Chatbot",
      titleHref: "#",
      description:
        "Enhance your customer experience with our AI-powered support chatbot. Automating customer service operations with intelligent chatbots enhance.",
      ctaLabel: "View projects",
      ctaHref: "#",
      image: {
        src: "/assets/images/event/project1-1.png",
        alt: "AI powered customer support chatbot project preview",
      },
    },
    {
      id: 2,
      tags: [
        { label: "IT Solutions", href: "#" },
        { label: "Security", href: "#", isYear: true },
      ],
      title: "Cybersecurity & Data Protection",
      titleHref: "#",
      description:
        "Seamlessly transition enterprise systems to the cloud with our comprehensive. Implementing advance security protocols to safeguard digital assets and ensure.",
      ctaLabel: "View projects",
      ctaHref: "#",
      image: {
        src: "/assets/images/event/project1-2.png",
        alt: "Cybersecurity and data protection project illustration",
      },
    },
    {
      id: 3,
      tags: [
        { label: "IT Solutions", href: "#" },
        { label: "Security", href: "#", isYear: true },
      ],
      title: "Data Analytics & Business Intelligence",
      titleHref: "#",
      description:
        "Turning raw data into actionable insights to support strategic decision-making. Implementing advance security protocols to safeguard digital assets and ensure.",
      ctaLabel: "View projects",
      ctaHref: "#",
      image: {
        src: "/assets/images/event/project1-1.png",
        alt: "Data analytics and business intelligence project dashboard preview",
      },
    },
    {
      id: 4,
      tags: [
        { label: "IT Solutions", href: "#" },
        { label: "Security", href: "#", isYear: true },
      ],
      title: "Cybersecurity & Data Protection",
      titleHref: "#",
      description:
        "Enabling remote teams work efficiently through secure, cloud-integrated. Implementing advance security protocols to safeguard digital assets and ensure.",
      ctaLabel: "View projects",
      ctaHref: "#",
      image: {
        src: "/assets/images/event/project1-2.png",
        alt: "Secure cloud based cybersecurity project preview",
      },
    },
  ],
};
