export interface ProjectWarranty {
  name: string;
  icon: string; // path to an SVG in /public/icons
  period: string; // e.g., "10 سنوات"
}

export const projectWarranties: ProjectWarranty[] = [
  { name: "تأمين", icon: "/icons/insurance.svg", period: "10 سنوات" },
  { name: "المصاعد", icon: "/icons/elevators.svg", period: "5 سنوات" },
  { name: "ضمان شبابيك الالمنيوم", icon: "/icons/aluminum-window-warranty.svg", period: "5 سنوات" },
  { name: "الانارة", icon: "/icons/lighting.svg", period: "3 سنوات" },
  { name: "المواصير الحرارية", icon: "/icons/thermal-pipes.svg", period: "15 سنوات" },
  { name: "ضمان خزانات المياه", icon: "/icons/water-tank-warranty.svg", period: "10 سنوات" },
];
