- 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.
27 lines
940 B
Svelte
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> |