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

31 lines
628 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>
2022-10-31 05:00:09 +00:00
<article>
2022-09-29 22:22:01 +00:00
<p>
2022-10-31 05:00:09 +00:00
One day we were bored and wanted to play one of our board games.
2022-09-29 22:22:01 +00:00
</p>
2022-10-31 05:00:09 +00:00
<p>
Our problem was that we didn't know which one to play.
</p>
<p>
Rather than just pick one I decided to make this overcomplicated solution.
</p>
</article>
2022-09-29 22:22:01 +00:00
</div>
2022-10-31 05:00:09 +00:00
<style>
2022-10-31 05:05:38 +00:00
.content, article {
2022-10-31 05:00:09 +00:00
display: grid;
gap: 1.5rem;
}
2022-10-31 05:05:38 +00:00
p {
line-height: 2;
}
2022-10-31 05:00:09 +00:00
</style>