Early draft of website content

This commit is contained in:
Hornwitser 2025-01-25 08:55:26 +01:00
parent ef8aaa6f6d
commit f7bc525310
8 changed files with 163 additions and 23 deletions

View file

@ -1,12 +1,15 @@
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,
];