/**
 * Media & press: every feature existed on the original genesis-global.com.sg
 * media page, with titles and dates as published there. PDFs from /documents;
 * the two Channel NewsAsia web features are preserved as the house's own
 * scans because the publisher's old URLs no longer resolve.
 */

export type PressFeature = {
  publication: string;
  year?: string;
  note: string;
  pdf?: string;
  url?: string;
  image?: string;
};

export const press: PressFeature[] = [
  {
    publication: "Prestige",
    year: "2014",
    note: "“The Diamond Brothers”, Prestige Singapore.",
    pdf: "/documents/GG-media-201402-prestige.pdf",
    image: "/press/article09.png",
  },
  {
    publication: "Millionaire Asia",
    year: "2013",
    note: "“Let There Be Light”.",
    pdf: "/documents/GG-media-20130129-millionaireasia.pdf",
    image: "/press/article02.png",
  },
  {
    publication: "Investment Life",
    year: "2013",
    note: "“Diamonds and Precious Stones: The New Investment Frontier”.",
    pdf: "/documents/GG-media-2013-investmentlife.pdf",
    image: "/press/article01.png",
  },
  {
    publication: "The New Paper",
    year: "2013",
    note: "“Trading Law for Gems”.",
    pdf: "/documents/GG-media-20131222-newpaper.pdf",
    image: "/press/article04.png",
  },
  {
    publication: "Jewels & Time (Singapore Tatler)",
    year: "2016",
    note: "The house in Volume 6 of the fine jewellery and watch annual.",
    pdf: "/documents/GG-Jewels-Time.pdf",
    image: "/press/article05.png",
  },
  {
    publication: "Designare",
    year: "2013",
    note: "“Five Minutes With Kelvin Tan”.",
    pdf: "/documents/GG-Designare.pdf",
    image: "/press/article06.png",
  },
  {
    publication: "Registry Indonesia",
    year: "2016",
    note: "Genesis in the collector's register.",
    pdf: "/documents/GG-Registry.pdf",
    image: "/press/article07.png",
  },
  {
    publication: "Aditus",
    year: "2018",
    note: "Aditus Pay partnership with Genesis-Global.",
    pdf: "/documents/GG-aditus.pdf",
    image: "/press/article08.png",
  },
  {
    publication: "Grand View (Grandtag Financial Group)",
    year: "2016",
    note: "The house in print across the region.",
    pdf: "/documents/GG-Grandtag-magazine.pdf",
    image: "/press/article10.png",
  },
  {
    publication: "Channel NewsAsia",
    year: "2016",
    note: "“The Big Blue”, on extraordinary blue gemstones.",
    url: "/press/article11.png",
    image: "/press/article11.png",
  },
  {
    publication: "Channel NewsAsia",
    year: "2015",
    note: "“Gems and Jewels for Men”.",
    url: "/press/article03.png",
    image: "/press/article03.png",
  },
];

export type Video = {
  youtubeId: string;
  title: string;
};

/** Titles as published on the original site's video page. */
export const videos: Video[] = [
  { youtubeId: "WX2PURzlwzk", title: "Live interview by Martin Soong, CNBC (2015)" },
  { youtubeId: "Q3_JIDBJjoE", title: "First Look Asia, Channel NewsAsia (2015)" },
  { youtubeId: "S-wxrSxoJ6Y", title: "Affluent Private Jet & Super Sports Cars Club anniversary event (2014)" },
  { youtubeId: "k7fu8PM3kjs", title: "Interview with Vietnam News (2015)" },
];
