export interface AnimatedIcon {
  src: string;
  alt: string;
  className: string;
}

export interface TemplatesHeroData {
  subTitle: string;
  title: string;
  description: string;
  animatedIcons: AnimatedIcon[];
}

export const templatesHeroData: TemplatesHeroData = {
  subTitle: "Template",
  title: "Modern Templates Ready to Use",
  description: "Get a head start on your website with over 100+ professionally designed templates",
  animatedIcons: [
    {
      src: "assets/images/icon/anim1-1.svg",
      alt: "Animated Shape 1",
      className: "icon1"
    },
    {
      src: "assets/images/icon/anim1-2.svg",
      alt: "Animated Shape 2",
      className: "icon2"
    }
  ]
};
