export type ServiceCard = {
  id: number;
  icon: string;
  alt: string;
  width: number;
  height: number;
  title: string;
  description: string;
  href: string;
  aos: "fade-right" | "fade-up" | "fade-left";
  delay: number;
};

export const serviceCards: ServiceCard[] = [
  {
    id: 1,
    icon: "/assets/images/icon/ser1-1.svg",
    alt: "Icon representing SaaS Product Strategy and Planning",
    width: 64,
    height: 64,
    title: "SaaS Product Strategy & Planning",
    description:
      "Align your vision with a scalable best roadmap to bring your product",
    href: "/single-service",
    aos: "fade-right",
    delay: 300,
  },
  {
    id: 2,
    icon: "/assets/images/icon/ser1-2.svg",
    alt: "Icon representing UX/UI Design for SaaS Platforms",
    width: 64,
    height: 64,
    title: "UX/UI Design for SaaS Platforms",
    description:
      "Craft intuitive, user-focused interfaces that drive engagement and retention.",
    href: "/single-service",
    aos: "fade-up",
    delay: 300,
  },
  {
    id: 3,
    icon: "/assets/images/icon/ser1-3.svg",
    alt: "Icon representing Custom SaaS design and Development",
    width: 64,
    height: 64,
    title: "Custom SaaS design and Development",
    description:
      "Build powerful, cloud-based applications tailored to your business",
    href: "/single-service",
    aos: "fade-left",
    delay: 300,
  },
  {
    id: 4,
    icon: "/assets/images/icon/fea1-4.svg",
    alt: "Icon representing API Integrations and Automation",
    width: 64,
    height: 64,
    title: "API Integrations & Automation",
    description:
      "Seamlessly connect with third-party tools like Stripe, Zapier, Slack, and more.",
    href: "/single-service",
    aos: "fade-right",
    delay: 300,
  },
  {
    id: 5,
    icon: "/assets/images/icon/ser1-5.svg",
    alt: "Icon representing Landing Page Design and Optimization",
    width: 64,
    height: 64,
    title: "Landing Page Design & Optimization",
    description:
      "High-converting, optimized pages designed to turn visitors into users.",
    href: "/single-service",
    aos: "fade-up",
    delay: 300,
  },
  {
    id: 6,
    icon: "/assets/images/icon/ser1-6.svg",
    alt: "Icon representing Fast Performance and Scalability Engineering",
    width: 64,
    height: 64,
    title: "Fast Performance & Scalability Engineering",
    description:
      "Ensure your platform stays fast, secure, and scalable as you grow.",
    href: "/single-service",
    aos: "fade-left",
    delay: 300,
  },
];
