To add a new item on the Resources page, edit:
src/pages/resources/index.astro
Find the resources array and add a new object.
{
title: "",
year: "",
authors: [],
description: "",
paper: "",
studyWebsite: null,
dataset: {
url: "",
description: "",
},
code: {
url: "",
description: "",
},
}title: full study/resource title.year: publication year (string, e.g."2025").authors: list of author names (displayed in short form as first author surname +et al.when multiple).description: optional text shown under the metadata row (can be empty).paper: paper URL, ornullif unavailable.studyWebsite: project/study website URL, ornullif unavailable.dataset: dataset link + short description, ornullif unavailable.code: code link + short description, ornullif unavailable.
- Use
nullfor missing optional links (paper,studyWebsite,dataset,code). - Use an object for
datasetandcodewhen present, including bothurlanddescription. studyWebsitecan be a plain URL string (no description required).