Files
pages/src/routes/changelog/changelog.ts

16 lines
552 B
TypeScript
Raw Normal View History

2026-02-02 21:30:21 +01:00
import { type ChangelogEntry } from "$lib/components/changelog-entry.svelte";
2026-02-02 20:09:18 +01:00
export const entries: ChangelogEntry[] = [
2026-02-03 15:50:16 +01:00
{
date: "2026-02-04",
time: "15:48",
content: "Now running my own Gitea instance! It now also hosts my website repository.",
link: "https://code.denizk0461.dev/denizk0461/pages",
},
2026-02-02 20:09:18 +01:00
{
date: "2026-02-02",
time: "19:30",
2026-02-03 15:50:16 +01:00
content: "Updated some texts and moved my contact info to the about page. Also created this changelog!",
2026-02-02 20:09:18 +01:00
link: "/meta/about",
},
];