export interface TrialListItem {
  id: number;
  icon: {
    src: string;
    alt: string;
  };
  label: string;
}

export interface TrialData {
  subtitle: string;
  titleStart: string;
  titleHighlight: string;
  description: string;
  listItems: TrialListItem[];
  button: {
    label: string;
    href: string;
    icon: string;
  };
}

export const trialData: TrialData = {
  subtitle: "Why Choose Us",
  titleStart: "Start your analytics",
  titleHighlight: "journey in minutes",
  description:
    "Ready to harness the full power of your data? Our platform makes analytics simple actionable.",
  listItems: [
    {
      id: 1,
      icon: { src: "/assets/images/icon/check1-2.svg", alt: "Intelligence Reporting Icon" },
      label: "Intelligence Reporting",
    },
    {
      id: 2,
      icon: { src: "/assets/images/icon/check1-2.svg", alt: "Advanced Data Modeling Icon" },
      label: "Advanced Data Modeling",
    },
    {
      id: 3,
      icon: { src: "/assets/images/icon/check1-2.svg", alt: "Custom KPI Tracking Icon" },
      label: "Custom KPI Tracking",
    },
    {
      id: 4,
      icon: { src: "/assets/images/icon/check1-2.svg", alt: "Data-Driven Insights Icon" },
      label: "Data-Driven Insights",
    },
  ],
  button: {
    label: "Get 14-days Free Trials",
    href: "#",
    icon: "/assets/images/icon/arrow.svg",
  },
};
