2022-01-28 05:27:12 +00:00
|
|
|
<script lang="ts">
|
2024-02-15 01:48:47 +00:00
|
|
|
import Logo from "$components/logo.svelte";
|
2022-01-28 05:27:12 +00:00
|
|
|
</script>
|
|
|
|
|
|
2024-02-15 01:48:47 +00:00
|
|
|
<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>
|
2022-04-24 23:38:12 +00:00
|
|
|
</div>
|
|
|
|
|
|
2023-12-28 20:16:36 +00:00
|
|
|
<style lang="postcss">
|
2024-02-15 01:48:47 +00:00
|
|
|
.container {
|
|
|
|
|
max-width: 900px;
|
2022-09-29 22:22:01 +00:00
|
|
|
display: grid;
|
2024-02-15 01:48:47 +00:00
|
|
|
gap: 0.25rem;
|
2022-09-29 22:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-15 01:48:47 +00:00
|
|
|
.logo {
|
|
|
|
|
width: 4rem;
|
|
|
|
|
height: 4rem;
|
2022-09-29 22:22:01 +00:00
|
|
|
}
|
2022-01-28 05:27:12 +00:00
|
|
|
</style>
|