aotds-docks/src/routes/(about)/about/+page.svelte

46 lines
1.0 KiB
Svelte

<h2>Welcome to the docks!</h2>
<!-- TODO
<p class="version">
<span>version {import.meta.env.PACKAGE_VERSION}</span>
<a>changelog</a>
</p>
-->
<p>
The Docks is a ship builder for the game
<a href="https://shop.groundzerogames.co.uk/rules.html" class="helper"
>Full Thrust</a
>, with construction rules following the
<a href="http://members.ozemail.com.au/~laranzu/fullthrust/rules/">
Cross Dimensions rules
</a>
as closely as possible.
</p>
<p>
The app is mostly developed for Firefox. I also check as much as I can that I
don't mess things too badly on Chrome. For the other browsers... caveat
emptor.
</p>
<p>
Written by
<!-- TODO change link -->
<a href="https://techblog.babyl.ca">Yanick Champoux</a>
. Code available on
<!-- TODO read the url from package.json -->
<a href={import.meta.env.HOMEPAGE}>my Gitea instance</a>.
</p>
<style>
h2 {
margin-bottom: 1.5rem;
}
p {
font-size: var(--font-scale-11);
margin-bottom: 1.5rem;
margin-left: 1rem;
}
</style>