import { BasePage } from "./bases.js"; import type { Page } from "./types.js"; import uselessDashboard from "./words/useless-dashboard.js"; export const words: Page[] = [ uselessDashboard, ].map(page => ({ title: page.title, ref: page.ref, content:

{page.title}

{page.content}
})); const title = "Ramblings and other wordy content"; export const wordsIndex: Page = { title, ref: "/words.html", content:

{title}

}