quartznet-info/src/routes/about.svelte
2022-05-21 15:16:10 +01:00

23 lines
550 B
Svelte

<script>
import Banner from '../components/Banner.svelte'
</script>
<svelte:head>
<title>Quartznet - About</title>
</svelte:head>
<Banner title="About"/>
<main class="container">
<section>
<h2>Frequently Asked Questions</h2>
<h3>Who we are</h3>
<p>A small team developing games and software.</p>
<h3>Why the name Quartznet</h3>
<p>Naming things is hard. We ended up with the name quartz and added net making quartznet.
<h3>SPAAAAACEEEE</h3>
<p>Space!</p>
</section>
</main>