renamed changelog to updates and moved link

This commit is contained in:
2026-02-16 18:19:46 +01:00
parent f5c8aba740
commit 669a5f95d0
5 changed files with 34 additions and 33 deletions

View File

@@ -0,0 +1,21 @@
<script lang="ts">
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/viewport/content.svelte";
import { entries } from "./updates";
import ChangelogEntry from "$lib/components/update-entry.svelte";
</script>
<svelte:head>
<title>Website Updates | denizk0461</title>
</svelte:head>
<Content>
<Banner2
title="Website Updates" />
<div>
{#each entries as entry}
<ChangelogEntry {entry} />
{/each}
</div>
</Content>

View File

@@ -0,0 +1,27 @@
import { type UpdateEntry } from "$lib/components/update-entry.svelte";
export const entries: UpdateEntry[] = [
{
date: "2026-02-06",
time: "18:47",
content: "Started a 28-day drawing challenge for myself! Updating the blog post every day with my new drawings.",
link: "/blog/2026/0205",
},
{
date: "2026-02-03",
time: "22:46",
content: "Created a new gallery widget for the main page and added a link to the new Gitea instance.",
},
{
date: "2026-02-03",
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",
},
];