/**
 * The knitwear range.
 *
 * Every name, fibre content and fabric weight here was transcribed from the
 * company's own product sheets, which were published on the old site as
 * images. These are figures a buyer will quote back, so nothing in this file
 * is estimated or rounded.
 *
 * Images are cropped from those same sheets by scripts/prepare-media.mjs.
 * See public/media/SOURCES.md.
 */

export interface Product {
  id: string;
  name: string;
  /** Fibre content and weight, the line a buyer scans for first. */
  fabric: string;
  /** Construction detail, as printed on the sheet. */
  detail?: string;
  colour: string;
  image: string;
}

export const products: Product[] = [
  {
    id: "product-1",
    name: "Men's LS Rugby Polo",
    fabric: "100% cotton jersey, 260 gsm",
    detail:
      "White twill collar. 3 button placket. 1x1 ribbed cuffs. Twill tape on inner neck.",
    colour: "Navy",
    image: "/media/products/product-1.webp",
  },
  {
    id: "product-2",
    name: "Men's Pique Polo",
    fabric: "60% cotton 40% poly, 220 gsm",
    detail:
      "3 button placket. 1x1 flat back collar and cuffs. Twill tape on inner neck and side slits.",
    colour: "Red",
    image: "/media/products/product-2.webp",
  },
  {
    id: "product-3",
    name: "Men's LS Block",
    fabric: "100% cotton jersey, 290 gsm",
    detail: "3 button placket.",
    colour: "Black",
    image: "/media/products/product-3.webp",
  },
  {
    id: "product-4",
    name: "Men's LS Pique Polo",
    fabric: "100% cotton pique, 220 gsm",
    detail:
      "Flat knit collar. 3 button placket. 1x1 ribbed cuffs. Twill tape on inner neck and side slits.",
    colour: "Red",
    image: "/media/products/product-4.webp",
  },
  {
    id: "product-5",
    name: "Men's LS Rugby Polo",
    fabric: "100% cotton pique, 220 gsm",
    detail: "Flat knit collar with poly tipping. 2 button placket.",
    colour: "Navy",
    image: "/media/products/product-5.webp",
  },
  {
    id: "product-6",
    name: "Men's LS Jersey Polo",
    fabric: "100% cotton jersey, 200 gsm",
    detail:
      "Flat knit collar. 3 button placket. 1x1 ribbed cuffs. Twill tape on inner neck and side slits.",
    colour: "Grey marl",
    image: "/media/products/product-6.webp",
  },
  {
    id: "product-7",
    name: "Men's LS Striped Polo",
    fabric: "100% cotton yarn dyed striped jersey, 200 gsm",
    detail: "Flat knit collar with tipping. 3 button placket.",
    colour: "Navy and white",
    image: "/media/products/product-7.webp",
  },
  {
    id: "product-8",
    name: "Men's LS Raglan Henley",
    fabric: "100% cotton waffle, 240 gsm",
    detail:
      "3 button placket. 1x1 ribbed neck and cuffs. Twill tape on inner neck and side slits.",
    colour: "Grey and black",
    image: "/media/products/product-8.webp",
  },
  {
    id: "product-9",
    name: "Men's LS Henley",
    fabric: "100% cotton jersey, 200 gsm",
    detail: "4 button placket. 1x1 ribbed neck and cuffs.",
    colour: "Charcoal",
    image: "/media/products/product-9.webp",
  },
  {
    id: "product-10",
    name: "Men's Fleece Pullover Hood",
    fabric: "70% cotton 30% poly, LSF fleece, 280 gsm",
    colour: "Black camo",
    image: "/media/products/product-10.webp",
  },
  {
    id: "product-11",
    name: "Men's Fleece Pullover Hood",
    fabric: "70% cotton 30% poly, LSF fleece, 280 gsm",
    colour: "Light grey",
    image: "/media/products/product-11.webp",
  },
  {
    id: "product-12",
    name: "Men's Fleece Pullover Hood",
    fabric: "70% cotton 30% poly, LSF fleece, 280 gsm",
    colour: "Bottle green",
    image: "/media/products/product-12.webp",
  },
  {
    id: "product-13",
    name: "Men's Fleece Pant",
    fabric: "70% cotton 30% poly, LSF fleece, 260 gsm",
    colour: "Indigo and olive",
    image: "/media/products/product-13.webp",
  },
  {
    id: "product-14",
    name: "Men's Fleece Pant",
    fabric: "70% cotton 30% poly, LSF fleece, 260 gsm",
    colour: "Grey marl",
    image: "/media/products/product-14.webp",
  },
  {
    id: "product-15",
    name: "Boys Pullover Hood",
    fabric: "70% cotton 30% poly, LSF fleece, 280 gsm",
    colour: "Red",
    image: "/media/products/product-15.webp",
  },
];
