26 lines
550 B
Svelte
26 lines
550 B
Svelte
<script>
|
|
import Banner from "$lib/Banner.svelte";
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>About - Quartznet</title>
|
|
</svelte:head>
|
|
|
|
<Banner title="About" />
|
|
|
|
<main class="container">
|
|
<section>
|
|
<h2>Who are we?</h2>
|
|
<p>A small team developing games and software.</p>
|
|
|
|
<h2>Why the name quartznet?</h2>
|
|
<p>
|
|
Naming things is hard. We liked the name quartz so we added net to
|
|
it making the name quartznet.
|
|
</p>
|
|
|
|
<h2>Space?</h2>
|
|
<p>SPAAAAACEEEE!</p>
|
|
</section>
|
|
</main>
|