Files
pages/src/routes/games/+page.svelte

34 lines
857 B
Svelte
Raw Normal View History

2025-07-14 12:12:30 +02:00
<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>