34 lines
917 B
Svelte
34 lines
917 B
Svelte
<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: "Swords & Stuff – Unity 2D RPG (unfinished)",
|
||
link: "swordsnstuff",
|
||
},
|
||
{
|
||
text: "Magician – Online Multiplayer Card Game (not playable)",
|
||
link: "magician",
|
||
}
|
||
]
|
||
}></LinkList>
|
||
</Content> |