26 lines
581 B
Svelte

<script>
import Banner from "$lib/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.
</p>
<h3>SPAAAAACEEEE</h3>
<p>Space!</p>
</section>
</main>