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

34 lines
917 B
Svelte
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>