export interface AboutBlock {
  id: number;
  icon: string; // Since it's SVG, I'll store it as a string or keep it in the component if it's unique
  title: string;
  description: string;
  category: string;
  delay: number;
}

export interface AboutData {
  subTitle: string;
  title: string;
  blocks: AboutBlock[];
}

export const aboutData: AboutData = {
  subTitle: "About Us",
  title: "We believe in collaboration, innovation, and results. Every brand has a story, and we’re here to help you tell it in the most powerful and effective way possible.",
  blocks: [
    {
      id: 1,
      icon: "dedicated",
      title: "Dedicated Team Member",
      description: "Our success powered by passionate team creative minds, technical experts and strategic design thinkers.",
      category: "(support)",
      delay: 300,
    },
    {
      id: 2,
      icon: "uix",
      title: "Top-notch UIX Design",
      description: "We create intuitive user-centered UIX designs that not only look stunning but seamless digital experiences.",
      category: "(design)",
      delay: 400,
    },
    {
      id: 3,
      icon: "delivery",
      title: "Quick & First Delivery",
      description: "We move fast because your goals can’t wait. Our team is committed to delivering high-quality digital solutions",
      category: "(Timely delivery)",
      delay: 500,
    },
  ],
};
