import hospital from "@/assets/unit-hospital.jpg";
import hospitality from "@/assets/unit-hospitality.jpg";
import manufacturing from "@/assets/unit-manufacturing.jpg";
import realestate from "@/assets/unit-realestate.jpg";

export type Unit = {
  slug: string;
  name: string;
  sector: string;
  location: string;
  blurb: string;
  overview: string[];
  highlights: string[];
  href: string;
  image: string;
};

export const units: Unit[] = [
  {
    slug: "zanzibar-waterfront",
    name: "Zanzibar Waterfront",
    sector: "Hospitality & Real Estate",
    location: "Bweleo, Zanzibar",
    blurb:
      "A landmark waterfront destination in Bweleo blending premium hospitality, residences, retail and leisure on the Indian Ocean.",
    overview: [
      "Zanzibar Waterfront is the group's flagship hospitality and mixed-use destination, set on the Bweleo seafront in Zanzibar.",
      "The development brings together hotel accommodation, dining, retail and leisure in a single seafront address designed for both international visitors and the local community.",
    ],
    highlights: [
      "Seafront location in Bweleo, Zanzibar",
      "Hospitality, retail and leisure under one destination",
      "Designed for international visitors and residents alike",
    ],
    href: "https://zanzibarwaterfront.co.tz/",
    image: hospitality,
  },
  {
    slug: "ampola-regency-hospital",
    name: "Ampola Regency Hospital",
    sector: "Healthcare",
    location: "Dar es Salaam",
    blurb:
      "A multi-specialty hospital delivering modern clinical care to communities across Dar es Salaam and the wider region.",
    overview: [
      "Ampola Regency Hospital is the group's flagship healthcare investment in Dar es Salaam, built to raise the standard of specialist medical care available in the city.",
      "The hospital combines modern diagnostic equipment, specialist consultants and patient-centred service in a single facility.",
    ],
    highlights: [
      "Multi-specialty clinical services",
      "Modern diagnostics and inpatient facilities",
      "Specialist consultants serving Dar es Salaam and the region",
    ],
    href: "https://ampolaregencyhospital.com/",
    image: hospital,
  },
  {
    slug: "tasakhtaa-hospital",
    name: "Ampola Tasakhtaa Hospital",
    sector: "Healthcare",
    location: "Zanzibar",
    blurb:
      "A trusted general hospital raising the standard of accessible, patient-centred healthcare in Zanzibar.",
    overview: [
      "Ampola Tasakhtaa Hospital provides accessible general and specialist healthcare for families across Zanzibar.",
      "Its focus is dependable everyday care — outpatient services, diagnostics, maternity and emergency support delivered with compassion.",
    ],
    highlights: [
      "General and specialist outpatient care",
      "Diagnostics, maternity and emergency services",
      "Affordable, community-focused healthcare",
    ],
    href: "https://tasakhtaahospital.co.tz/",
    image: hospital,
  },
  {
    slug: "turkys-mifuko",
    name: "Turkys Mifuko",
    sector: "Manufacturing",
    location: "Tanzania",
    blurb:
      "An industrial producer of woven polypropylene bags and packaging serving agriculture, cement and consumer sectors across East Africa.",
    overview: [
      "Turkys Mifuko is the group's manufacturing arm, producing woven polypropylene bags and industrial packaging at scale.",
      "The plant supplies agriculture, cement, milling and consumer goods customers across Tanzania and neighbouring markets, supporting local industry with locally made packaging.",
    ],
    highlights: [
      "Woven polypropylene bags and industrial packaging",
      "Serving agriculture, cement and consumer sectors",
      "Local manufacturing, regional distribution",
    ],
    href: "https://turkysmifuko.co.tz/",
    image: manufacturing,
  },
  {
    slug: "real-estate",
    name: "Turkys Real Estate",
    sector: "Real Estate",
    location: "Zanzibar & Mainland Tanzania",
    blurb:
      "Developing residential and commercial properties that shape the modern skylines of Zanzibar and mainland Tanzania.",
    overview: [
      "The group's real estate arm develops and manages residential and commercial property across Zanzibar and mainland Tanzania.",
      "Projects are built for long-term value — quality construction, considered locations and responsible property management.",
    ],
    highlights: [
      "Residential and commercial developments",
      "Long-term asset ownership and management",
      "Projects in Zanzibar and mainland Tanzania",
    ],
    href: "https://turkysrealestate.co.tz/",
    image: realestate,
  },
];

export const featuredUnits = units.slice(0, 4);

export function getUnit(slug: string) {
  return units.find((u) => u.slug === slug);
}
