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

58 lines
1.3 KiB
Svelte
Raw Normal View History

2023-05-11 14:11:55 +00:00
<div class="header">
<h2>Welcome to the docks!</h2>
2023-05-11 16:56:04 +00:00
<div>version {import.meta.env.PACKAGE_VERSION}</div>
2023-05-11 14:11:55 +00:00
</div>
2023-04-13 20:24:17 +00:00
2023-04-14 16:56:39 +00:00
<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>
2023-04-13 20:24:17 +00:00
2023-04-14 16:56:39 +00:00
<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>
2023-04-13 20:24:17 +00:00
2023-04-14 16:56:39 +00:00
<p>
Written by
<a href="https://techblog.babyl.ca">Yanick Champoux</a>
. Code available on
2023-05-04 22:42:07 +00:00
<a href={import.meta.env.HOMEPAGE}>my Gitea instance</a>.
2023-04-14 16:56:39 +00:00
</p>
2023-04-13 20:24:17 +00:00
2023-05-26 16:19:04 +00:00
<p>
<a
href="https://www.flaticon.com/free-icons/space-station"
title="space
station icons">Space station faveicon created by IYIKON - Flaticon</a
>
</p>
2023-05-09 16:29:37 +00:00
<p>Found a bug? You can report it <a href={import.meta.env.BUGS}>here</a>.</p>
2023-04-13 20:24:17 +00:00
<style>
h2 {
margin-bottom: 1.5rem;
2023-05-11 14:11:55 +00:00
flex: 1;
2023-04-13 20:24:17 +00:00
}
p {
font-size: var(--font-scale-11);
margin-bottom: 1.5rem;
margin-left: 1rem;
}
2023-05-11 14:11:55 +00:00
.header {
display: flex;
align-items: baseline;
}
.header div {
font-size: var(--font-scale-11);
}
2023-04-13 20:24:17 +00:00
</style>