/**
 * The three manufacturing divisions, mirroring the company's own navigation.
 */

export type DivisionId = "knitwear" | "denim" | "workwear-uniforms";

export interface Division {
  id: DivisionId;
  href: string;
  index: string;
  name: string;
  kicker: string;
  blurb: string;
  highlights: string[];
  accent: "cotton" | "indigo" | "hiviz";
}

export const divisions: Division[] = [
  {
    id: "knitwear",
    href: "/knitwear",
    index: "01",
    name: "Knitwear",
    kicker: "Since 1956",
    blurb:
      "The division the group was built on. One hundred and fifty six knitting machines on a single floor, fed by two in house spinning units, producing jersey, pique, interlock, fleece and rib in cotton and blends.",
    highlights: [
      "156 knitting machines on one floor",
      "27,000 kg of spinning capacity per day",
      "200,000 auto striped units per month",
    ],
    accent: "cotton",
  },
  {
    id: "denim",
    href: "/denim",
    index: "02",
    name: "Denim and woven",
    kicker: "Lahore unit",
    blurb:
      "A fully compliant, modern and technologically developed denim and woven operation, with in house sewing, a state of the art laundry and laser finishing, exporting to buyers all over the world.",
    highlights: [
      "In house denim sewing",
      "State of the art laundry and finishing",
      "Laser finishing, no stone and no manual scraping",
    ],
    accent: "indigo",
  },
  {
    id: "workwear-uniforms",
    href: "/workwear-uniforms",
    index: "03",
    name: "Workwear and uniforms",
    kicker: "60 years of it",
    blurb:
      "Garments designed for people who work in them. Medical, kitchen, industrial and high visibility ranges, each put through extensive wearer trials and fitting reviews before it ships.",
    highlights: [
      "Six specialist categories",
      "Extensive wearer trials and fitting reviews",
      "Built for the modern workforce",
    ],
    accent: "hiviz",
  },
];

/** The vertically integrated production chain, animated on the home and about pages. */
export const productionChain = [
  { step: "Spinning", note: "Two units, cotton and blends" },
  { step: "Knitting", note: "156 machines, single and double knit" },
  { step: "Dyeing", note: "In house, solid and yarn dyed" },
  { step: "Finishing", note: "Compacting, laundry, laser" },
  { step: "Cutting", note: "Automated lays" },
  { step: "Stitching", note: "Knit, denim and woven lines" },
  { step: "Embroidery", note: "In house" },
  { step: "Printing", note: "In house" },
] as const;
