// ⚠️ PLACEHOLDER DATA
// Replace citation, annotation, and tags with actual content from Dr. McCord.
// PDF files must be placed in storage/documents/articles/ on the backend (BE-01).

export interface BibliographyEntry {
  id: number;
  citation: string;
  annotation: string;
  pdfFileName: string;
  tags: string[];
}

export const bibliographyEntries: BibliographyEntry[] = [
  {
    id: 1,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Neulinger et al. (2024).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Neulinger et al. (2024).",
    pdfFileName: "neulinger-et-al-2024.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 2,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Mitchell et al. (2020).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Mitchell et al. (2020).",
    pdfFileName: "mitchell-et-al-2020.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 3,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for McCord (2020).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for McCord (2020).",
    pdfFileName: "mccord-2020.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 4,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Leonelli et al. (2023).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Leonelli et al. (2023).",
    pdfFileName: "leonelli-et-al-2023.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 5,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Hicks et al. (preprint).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Hicks et al. (preprint).",
    pdfFileName: "hicks-et-al-preprint.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 6,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Goller et al. (2025).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Goller et al. (2025).",
    pdfFileName: "goller-et-al-2025.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 7,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Dodge et al. (2024).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Dodge et al. (2024).",
    pdfFileName: "dodge-et-al-2024.pdf",
    tags: ["PLACEHOLDER"],
  },
  {
    id: 8,
    citation: "PLACEHOLDER — Dr. McCord to provide APA citation for Davis et al. (2023).",
    annotation: "PLACEHOLDER — Dr. McCord to provide annotation for Davis et al. (2023).",
    pdfFileName: "davis-et-al-2023.pdf",
    tags: ["PLACEHOLDER"],
  },
];
