edited style and added games page

This commit is contained in:
2025-07-14 12:12:30 +02:00
parent d8cd9f9b7f
commit ea4592b4c2
8 changed files with 138 additions and 44 deletions

View File

@@ -0,0 +1,34 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
import LinkList from "$lib/link-list.svelte";
</script>
<svelte:head>
<title>Games | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Games"
banner="/projects/banner.webp"
subtitle="Just some small game projects"
/>
<Content>
<p>Here you'll find all the game projects I've put online!</p>
<p>Do note: the things on here are mostly quick projects, largely unfinished, and possibly not fun.</p>
<LinkList entries={
[
{
text: "swordsnstuff",
link: "swordsnstuff",
},
{
text: "magician - warning no server",
link: "magician",
}
]
}></LinkList>
</Content>