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

41 lines
762 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="site-logo">
<div class="logo">
<Logo />
</div>
Bored Game
</div>
<h1>Welcome to Bored Game!</h1>
<h2>Track the board games you own, the ones you want, and whether you play them enough.</h2>
<p>Get started by joining the <a href="/waitlist">wait list</a> or <a href="/login">log in</a> if you already have an account.</p>
</div>
<style lang="postcss">
a {
text-decoration: underline;
}
.site-logo {
display: flex;
place-items: center;
}
.container {
2022-09-29 22:22:01 +00:00
display: grid;
place-content: center;
max-width: 900px;
gap: 0.25rem;
2022-09-29 22:22:01 +00:00
}
.logo {
display: flex;
align-items: center;
width: 4rem;
height: 4rem;
2022-09-29 22:22:01 +00:00
}
2022-01-28 05:27:12 +00:00
</style>