export type StartedStepItem = {
  id: number;
  aos: string;
  delay: number;
  icon: string;
  alt: string;
  title: string;
  description: string;
};

export const startedStepsData: StartedStepItem[] = [
  {
    id: 1,
    aos: "fade-right",
    delay: 300,
    icon: "/assets/images/icon/choose1-1.svg",
    alt: "Sign Up & Set Up Icon",
    title: "Sign Up & Set Up",
    description:
      "Create your account in minutes and easily configure your settings to match your business needs—no coding.",
  },
  {
    id: 2,
    aos: "fade-up",
    delay: 400,
    icon: "/assets/images/icon/choose1-2.svg",
    alt: "Connect & Automate Icon",
    title: "Connect & Automate",
    description:
      "Integrate your favorite tools, import your data, and set up automated SaaS workflows to start saving time.",
  },
  {
    id: 3,
    aos: "fade-left",
    delay: 500,
    icon: "/assets/images/icon/choose1-3.svg",
    alt: "Launch & Grow Icon",
    title: "Launch & Grow",
    description:
      "Start using the platform to streamline operations, boost productivity, and scale your business with real-time.",
  },
];
