export interface Service {
  id: number;
  icon: string;
  alt: string;
  title: string;
  description: string;
}

export interface ServicesData {
  services: Service[];
}

export const servicesData: ServicesData = {
  services: [
    {
      id: 1,
      icon: "/assets/images/service/ser1-1.svg",
      alt: "AI crafted wireframes and layouts service icon",
      title: "AI-Crafted Wireframes and Layouts",
      description:
        "AI-Generated Prototypes allow to bring ideas to instantly.",
    },
    {
      id: 2,
      icon: "/assets/images/service/ser1-2.svg",
      alt: "High quality focused software development service icon",
      title: "High Quality-Focused Development",
      description:
        "Development empowers teams to bring ideas to life faster.",
    },
    {
      id: 3,
      icon: "/assets/images/service/ser1-3.svg",
      alt: "AI powered software testing solutions service icon",
      title: "AI-Powered Testing Solutions",
      description:
        "Smart QA Testing ensures your software performs flawlessly.",
    },
    {
      id: 4,
      icon: "/assets/images/service/ser1-4.svg",
      alt: "Seamless help and customer support service icon",
      title: "Seamless Help and Assistance",
      description: "Full Support means dedicated team ready to every step.",
    },
  ],
};
