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

16 lines
552 B
TypeScript

import { type ChangelogEntry } from "$lib/components/changelog-entry.svelte";
export const entries: ChangelogEntry[] = [
{
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",
},
{
date: "2026-02-02",
time: "19:30",
content: "Updated some texts and moved my contact info to the about page. Also created this changelog!",
link: "/meta/about",
},
];