updated about page

This commit is contained in:
2026-01-23 20:15:52 +01:00
parent 2865d822bb
commit 1b711c77af
10 changed files with 107 additions and 117 deletions

View File

@@ -0,0 +1,26 @@
<script lang="ts">
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/viewport/content.svelte";
import LinkList, { type LinkEntry } from "$lib/lists/link-list.svelte";
let feeds: LinkEntry[] = [
{
text: "Project N5 devlog",
link: "/projects/projectn5/devlog/feed.xml",
},
]
</script>
<svelte:head>
<title>Feeds | denizk0461</title>
</svelte:head>
<Content>
<Banner2
title="Feeds"
subtitle="XML feeds" />
<p>This is a list of RSS feeds I maintain on this website. You can subscribe to them by adding the link of any feed to an RSS reader of your liking.</p>
<LinkList entries={feeds} />
</Content>