edited style and added games page
This commit is contained in:
34
src/routes/games/+page.svelte
Normal file
34
src/routes/games/+page.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user