import { BasePage } from "./bases.js"; import type { Page } from "./types.js"; export const updates: Page[] = [ { published: "2025-xx-xx", title: "Website Launch", ref: "/updates/site-launch.html", } ].map(page => ({ title: page.title, ref: page.ref, content:

{page.title}

Published: {page.published}

Placeholder content

})); const title = "Website Updates"; export const updatesIndex: Page = { title, ref: "/updates.html", content:

{title}

}