quartznet-info/src/routes/about.svelte
Chris Dill 323b2a8eeb Adding more pages and fixing some links and layout.
- Added test page for a game.
- Added link data to list of games.
- Moved blog content into main and section tags.
- Fixed typo in the about page.
2020-08-22 21:41:59 +01:00

27 lines
940 B
Svelte

<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 clearly 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>