2026-02-02 21:30:21 +01:00
|
|
|
<script lang="ts">
|
|
|
|
|
import Banner2 from "$lib/banner2.svelte";
|
|
|
|
|
import Content from "$lib/viewport/content.svelte";
|
2026-02-16 18:19:46 +01:00
|
|
|
import { entries } from "./updates";
|
|
|
|
|
import ChangelogEntry from "$lib/components/update-entry.svelte";
|
2026-02-02 21:30:21 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<svelte:head>
|
2026-02-16 18:19:46 +01:00
|
|
|
<title>Website Updates | denizk0461</title>
|
2026-02-02 21:30:21 +01:00
|
|
|
</svelte:head>
|
|
|
|
|
|
|
|
|
|
<Content>
|
|
|
|
|
<Banner2
|
2026-02-16 18:19:46 +01:00
|
|
|
title="Website Updates" />
|
2026-02-02 21:30:21 +01:00
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
{#each entries as entry}
|
|
|
|
|
<ChangelogEntry {entry} />
|
|
|
|
|
{/each}
|
|
|
|
|
</div>
|
|
|
|
|
</Content>
|