)}
);
}
/* ---------- Footer ---------- */
function Footer() {
const org = window.IBC.org;
return (
);
}
/* ---------- Page header (signature rule under heading) ---------- */
function PageHeader({ eyebrow, title, lead }) {
return (
{eyebrow &&
{eyebrow}
}
{title}
{lead &&
{lead}
}
);
}
/* ---------- Back link ---------- */
function BackLink({ to, children }) {
return (
← {children}
);
}
/* ---------- Paper row (research index) ---------- */
function PaperRow({ paper }) {
return (
{paper.title}
{paper.authors.join(", ")}··{paper.year}
{paper.abstract}
View Paper e.preventDefault()}>Download PDF
);
}
/* ---------- Area card (home) ---------- */
function AreaCard({ area }) {
return (
{area.code}
{area.name}
{area.blurb}
Read paper
);
}
/* ---------- Note card ---------- */
function NoteCard({ note }) {
return (