export interface AboutFeature {
  icon: string;
  title: string;
  description: string;
  aosDelay: number;
}

export interface AboutSectionData {
  subtitle: string;
  title: string;
  description: string;
  image: {
    src: string;
    alt: string;
  };
  features: AboutFeature[];
}

export const aboutData: AboutSectionData = {
  subtitle: "Why people choose us",
  title: "The Smarter choice for chat conversations",
  description: "People choose our chatbot app because it offers the perfect blend of intelligence, speed, and simplicity. Designed with users in mind, it delivers fast, accurate, and natural conversations",
  image: {
    src: "/assets/images/feature/feature2-1.png",
    alt: "Chatbot feature illustration image"
  },
  features: [
    {
      icon: "/assets/images/icon/feature2-1.svg",
      title: "Human-Like Conversations",
      description: "Delivers natural, context-aware responses that feel personal and engaging.",
      aosDelay: 600
    },
    {
      icon: "/assets/images/icon/feature2-2.svg",
      title: "Smart Learning & Adaptation",
      description: "Continuously improves with every interaction to better understand users.",
      aosDelay: 700
    },
    {
      icon: "/assets/images/icon/feature2-3.svg",
      title: "Secure & Reliable Chatbot",
      description: "Security and reliability are at the core chatbot technology are protected encryption",
      aosDelay: 800
    }
  ]
};
