Migrating to Svelte User management not done. Footer not done Nav user management icon not positioned correctly

This commit is contained in:
Ben Parsons 2020-08-19 23:54:15 +10:00
commit a21186f362
55 changed files with 2126 additions and 387 deletions

27
src/routes/about.svelte Normal file
View file

@ -0,0 +1,27 @@
<script>
import Banner from '../components/banner.svelte'
</script>
<svelte:head>
<title>Quartznet - About</title>
</svelte:head>
<Banner title="Quartznet - About"/>
<main>
<section class="container">
<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 to it to make quartznet. Also it
includes the letters q and z so it is cleary a great name!
<h2>Contact</h2>
<p>We can be reached at contact@quartznet.com. If you are requesting a key for reviewing, steaming, or youtube,
as well as all other legitimate purposes, please be sure to include a link to your channel or website.</p>
<p>Feel free to contact us via email if you want to get in touch.</p>
</section>
</main>