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

27 lines
563 B
Svelte
Raw Normal View History

2022-09-29 22:22:01 +00:00
<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>
2022-09-29 22:22:01 +00:00
</div>
2022-10-31 05:00:09 +00:00
<style>
.content,
article {
display: grid;
gap: 1rem;
}
2022-10-31 05:05:38 +00:00
p {
line-height: 1.5;
}
2022-10-31 05:00:09 +00:00
</style>