hornwitser.no/content/pages.tsx
2025-01-25 10:46:08 +01:00

17 lines
404 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";
import { links } from "./links.js";
export const pages: Page[] = [
index,
updatesIndex,
...updates,
wordsIndex,
...words,
projectsIndex,
...projects,
links,
];