export interface AboutAchievementItem {
  organization: string;
  role: string;
  highlights: string[];
  image: {
    src: string;
    alt: string;
    width: number;
    height: number;
  };
  year: string;
}

export interface AboutAchievementsSection {
  subtitle: string;
  title: string;
  items: AboutAchievementItem[];
}

const sharedHighlights: string[] = [
  "Lead UX Designer",
  "User interface designer",
  "Product designer",
  "SaaS Designer",
  "User-experience designer",
];

export const aboutAchievementsSections: AboutAchievementsSection[] = [
  {
    subtitle: "Awards & Achievement",
    title: "Award-winning creativity & innovation",
    items: [
      {
        organization: "Awwwards",
        role: "Lead Designer",
        highlights: sharedHighlights,
        image: {
          src: "/assets/images/awards/award1.jpg",
          alt: "Awwwards recognition for Lead UX Designer achievement",
          width: 260,
          height: 80,
        },
        year: "2024",
      },
      {
        organization: "Behance",
        role: "UX Designer",
        highlights: sharedHighlights,
        image: {
          src: "/assets/images/awards/award2.jpg",
          alt: "Behance award for outstanding UX Designer work",
          width: 260,
          height: 80,
        },
        year: "2023",
      },
      {
        organization: "Google",
        role: "Wen Designer",
        highlights: sharedHighlights,
        image: {
          src: "/assets/images/awards/award3.jpg",
          alt: "Google design award recognition for web designer",
          width: 260,
          height: 80,
        },
        year: "2022",
      },
      {
        organization: "Dribbble",
        role: "SaaS Designer",
        highlights: sharedHighlights,
        image: {
          src: "/assets/images/awards/award4.jpg",
          alt: "Dribbble featured SaaS Designer award",
          width: 260,
          height: 80,
        },
        year: "2021",
      },
      {
        organization: "LinkedIn",
        role: "App Developer",
        highlights: sharedHighlights,
        image: {
          src: "/assets/images/awards/award5.jpg",
          alt: "LinkedIn recognition for professional app development achievement",
          width: 260,
          height: 80,
        },
        year: "2020",
      },
    ],
  },
];
