Set up the basic layout of the site and greybox its content based on statically generated pages. Content pages uses general base layouts defined centrally to avoid duplicating code.
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
import type { Page } from "./types.js";
|
|
import { index } from "./index.js";
|
|
import { updates, updatesIndex } from "./updates.js";
|
|
import { projects, projectsIndex } from "./projects.js";
|
|
|
|
export const pages: Page[] = [
|
|
index,
|
|
updatesIndex,
|
|
...updates,
|
|
projectsIndex,
|
|
...projects,
|
|
];
|