export interface AboutStoryCounter {
  subtitle: string;
  target: number;
  suffix: string;
  description: string;
  className?: string;
}

export interface AboutStorySection {
  subtitle: string;
  title: string;
  image: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  paragraph: string;
  counters: AboutStoryCounter[];
}

export const aboutStorySections: AboutStorySection[] = [
  {
    subtitle: "About Us",
    title:
      "We help brands grow, evolve, and connect with their audience in meaningful ways. From branding and web design to digital",
    image: {
      src: "/assets/images/event/about2-1.png",
      alt: "Creative team discussing branding and digital strategy in a modern workspace",
      width: 633,
      height: 748,
    },
    paragraph:
      "With a focus on creativity, collaboration, and results, we work closely with our clients to bring their ideas to life. Our approach combines strategic thinking with cutting-edge",
    counters: [
      {
        subtitle: "(Project complete)",
        target: 5800,
        suffix: "+",
        description: "We have a proven track record delivering our projects",
      },
      {
        subtitle: "(Clients satisfactions)",
        target: 3600,
        suffix: "+",
        description: "client-first approach ensures every project is handled",
        className: "mb-0",
      },
    ],
  },
];
