export interface ServiceFeature {
  image: {
    src: string;
    alt: string;
    className: string;
  } | null;
  title: string;
  aosDelay: number;
  className?: string;
}

export interface ServicesSectionData {
  subtitle: string;
  title: string;
  description: string;
  features: ServiceFeature[];
}

export const servicesData: ServicesSectionData = {
  subtitle: "All-in-One AI Features",
  title: "Next-Level features for seamless interactions",
  description: "Our chatbot app is packed with intelligent features designed to deliver fast, human-like, and highly personalized conversations.",
  features: [
    {
      image: {
        src: "/assets/images/feature/feature3-1.png",
        alt: "AI powered automation feature image",
        className: "image1"
      },
      title: "AI-Powered Automation boost productivity with AI",
      aosDelay: 300
    },
    {
      image: {
        src: "/assets/images/feature/feature3-2.png",
        alt: "AI productivity statistics feature image",
        className: "image2"
      },
      title: "2h 20m",
      aosDelay: 400,
      className: "v2"
    },
    {
      image: {
        src: "/assets/images/feature/feature3-3.png",
        alt: "Smart task management chatbot feature image",
        className: "image3"
      },
      title: "Smart Task Management user friendly design and powerful features drive smart conversations",
      aosDelay: 300,
      className: "two"
    },
    {
      image: {
        src: "/assets/images/feature/feature3-4.png",
        alt: "AI powered customer chatbot feature image",
        className: "image4"
      },
      title: "Customers AI-powered to chatbots - free forever.",
      aosDelay: 300
    },
    {
      image: null,
      title: "Customers AI-powered to chatbots - free forever.",
      aosDelay: 400,
      className: "three"
    }
  ]
};
