16 lines
419 B
Svelte
16 lines
419 B
Svelte
<script>
|
|
import Game from "$lib/components/GameListed.svelte";
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Games - Rowblox</title>
|
|
</svelte:head>
|
|
|
|
<div class="flex items-center">
|
|
<p class="font-bold text-2xl my-1">Games</p>
|
|
<span class="flex-grow" />
|
|
<a class="text-lg px-3 py-0.5 rounded border-2 border-blue-500 shadow-lg cursor-pointer hover:bg-blue-200 text-blue-500" href="/games/create">Create Game</a>
|
|
</div>
|
|
|
|
<Game />
|