boredgame/src/routes/about/+page.svelte

26 lines
563 B
Svelte

<svelte:head>
<title>Bored Game | About</title>
<meta name="description" content="About Bored Game" />
</svelte:head>
<div class="content">
<h1>About Bored Game</h1>
<article>
<p>One day we were bored and wanted to play one of our board games.</p>
<p>Our problem was that we didn't know which one to play.</p>
<p>Rather than just pick a game I decided to make this overcomplicated solution.</p>
<p>I hope you enjoy using it!</p>
</article>
</div>
<style>
.content,
article {
display: grid;
gap: 1rem;
}
p {
line-height: 1.5;
}
</style>