boredgame/src/routes/(app)/+page.svelte

27 lines
550 B
Svelte
Raw Normal View History

2022-01-28 05:27:12 +00:00
<script lang="ts">
import Logo from "$components/logo.svelte";
2022-01-28 05:27:12 +00:00
</script>
<div class="container">
<div class="logo">
<Logo />
</div>
<h1>Welcome to Bored Game</h1>
<h2>Keep track of your board games!</h2>
<p>The ones you own, the ones you want, and whether you play them enough.</p>
<p>Get started by joinging the <a href="/waitlist">waitlist</a> or <a href="/login">signing in</a>.</p>
</div>
<style lang="postcss">
.container {
max-width: 900px;
2022-09-29 22:22:01 +00:00
display: grid;
gap: 0.25rem;
2022-09-29 22:22:01 +00:00
}
.logo {
width: 4rem;
height: 4rem;
2022-09-29 22:22:01 +00:00
}
2022-01-28 05:27:12 +00:00
</style>