export interface FeatureSection2Data {
  subtitle: string;
  title: string;
  description: string;
  buttons: {
    text: string;
    href: string;
    variant?: string;
  }[];
  image: {
    src: string;
    alt: string;
  };
}

export const featureSection2Data: FeatureSection2Data = {
  subtitle: "All-in-One Solutions",
  title: "Launch Your Site in Minutes with the AI Website Builder",
  description: "Start creating your website today with the power of AI. Our intuitive AI website builder makes designing effortless.",
  buttons: [
    {
      text: "Start For Free",
      href: "#",
      variant: "v2",
    },
    {
      text: "Generate With AI",
      href: "#",
      variant: "v3",
    },
  ],
  image: {
    src: "/assets/images/feature/feature2-1.png",
    alt: "AI Website Builder Preview",
  },
};
