added a changelog section

This commit is contained in:
2026-05-31 19:21:38 +01:00
parent 2c72bac2e2
commit 8e0c34158c
10 changed files with 191 additions and 38 deletions
+16
View File
@@ -0,0 +1,16 @@
<script>
import { commitCard } from "./commitCard.svelte";
let { data } = $props();
let commits = data.data.commits;
import "./card.scss";
</script>
<table class="commitContainer">
<caption>Git Commits of the website repo</caption>
<tbody>
{#each commits as commit}
{@render commitCard(commit)}
{/each}
</tbody>
</table>