/**
 * Buyers the company names publicly in its own denim company profile.
 *
 * Two notes on accuracy.
 *
 * The brochure misspells several of its own customers: it prints "Gooco",
 * "TK Max", "Desire" and "H Lander", while the logos set on the same page
 * read Gocco, TK Maxx, Desires and H Landers. These are other companies'
 * trademarks, so they are written the way their owners write them.
 *
 * Names only, deliberately. The logo files on the old site are third-party
 * marks and were 200 px anyway, so reproducing them would be both a rights
 * question and a quality one.
 */

export const clientsIntro =
  "We have developed a sophisticated niche since our inception. Over the years, we have won the trust of many national, international and multinational buyers for our quality.";

export interface Client {
  name: string;
  country: string;
}

export const clients: Client[] = [
  { name: "Lefties", country: "Spain" },
  { name: "Tiffosi", country: "Portugal" },
  { name: "Conbipel", country: "Italy" },
  { name: "Gocco", country: "Spain" },
  { name: "Liwe Inside", country: "Spain" },
  { name: "Top Secret", country: "Poland" },
  { name: "Twisted Soul", country: "United Kingdom" },
  { name: "TK Maxx", country: "United Kingdom" },
  { name: "Minymo", country: "Denmark" },
  { name: "Desires", country: "Denmark" },
  { name: "H Landers", country: "France" },
  { name: "Karl Marc John", country: "France" },
  { name: "Young & Reckless", country: "United States" },
];
