export interface TrialFeature {
  id: number;
  text: string;
  icon: string;
  iconAlt: string;
}

export interface TrialData {
  subtitle: string;
  titlePart1: string;
  titleSpan: string;
  description: string;
  features: TrialFeature[];
  buttonText: string;
  buttonLink: string;
  buttonIcon: string;
  buttonIconAlt: string;
}

export const trialData: TrialData = {
  subtitle: "Why Choose Us",
  titlePart1: "Start your analytics ",
  titleSpan: "journey in minutes",
  description: "Ready to harness the full power of your data? Our platform makes analytics simple and actionable.",
  features: [
    {
      id: 1,
      text: "Intelligence Reporting",
      icon: "/assets/images/icon/check1-5.svg",
      iconAlt: "Check Icon for Intelligence Reporting"
    },
    {
      id: 2,
      text: "Advanced Data Modeling",
      icon: "/assets/images/icon/check1-5.svg",
      iconAlt: "Check Icon for Advanced Data Modeling"
    },
    {
      id: 3,
      text: "Custom KPI Tracking",
      icon: "/assets/images/icon/check1-5.svg",
      iconAlt: "Check Icon for Custom KPI Tracking"
    },
    {
      id: 4,
      text: "Data-Driven Insights",
      icon: "/assets/images/icon/check1-5.svg",
      iconAlt: "Check Icon for Data-Driven Insights"
    }
  ],
  buttonText: "Get 14-days Free Trial",
  buttonLink: "#",
  buttonIcon: "/assets/images/icon/arrow.svg",
  buttonIconAlt: "Arrow icon"
};
