added changelog

This commit is contained in:
2026-02-02 20:09:18 +01:00
parent 911199efaa
commit 730ec4bc24
2 changed files with 73 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
export interface ChangelogEntry {
date: string;
time: string;
content: string;
link?: string;
}
export const entries: ChangelogEntry[] = [
{
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",
},
];