hornwitser.no/content/pages.tsx

15 lines
360 B
TypeScript

import type { Page } from "./types.js";
import { index } from "./index.js";
import { updates, updatesIndex } from "./updates.js";
import { words, wordsIndex } from "./words.js";
import { projects, projectsIndex } from "./projects.js";
export const pages: Page[] = [
index,
updatesIndex,
...updates,
wordsIndex,
...words,
projectsIndex,
...projects,
];