Draft links page

This commit is contained in:
Hornwitser 2025-01-25 10:46:08 +01:00
parent db0ec6f797
commit 7f8132d33e
4 changed files with 322 additions and 0 deletions

View file

@ -3,6 +3,7 @@ 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,
@ -12,4 +13,5 @@ export const pages: Page[] = [
...words,
projectsIndex,
...projects,
links,
];