ddstats-server/views/pages/credits.njk

37 lines
1.5 KiB
Plaintext

{% extends "../templates/basic.njk" %}
{% block head %}
<title>DDStats - Credits</title>
{% endblock %}
{% block body %}
<main class="flex-container">
<div class="long-text">
<h1>Credits!</h1>
<h2>Team qwik</h2>
<p>
The developers of <a href="https://qwik.space">qwik</a> are the main working force behind DDStats.
BurnyLlama is the main designer and developer of the UI and API, while furo (Yumiko) is the
"database engineer". (That means he does a lot of scuffed things so that the stats can be presented.)<br>
This DDStats instance is also hosted by BurnyLlama.
</p>
<h2>deen & DDNet</h2>
<p>
Deen has both provided us with help and guidence, as well as with data. Also, since this project
shows stats for DDNet, DDNet is also important!
</p>
<h2>Node packages used</h2>
<p>
We also have some dependencies: <br>
<a href="https://www.npmjs.com/package/@msgpack/msgpack">@msgpack/msgpack</a>,
<a href="https://www.npmjs.com/package/better-sqlite3">better-sqlite3</a>,
<a href="https://www.npmjs.com/package/dotenv">dotenv</a>,
<a href="https://www.npmjs.com/package/express">express</a>,
<a href="https://www.npmjs.com/package/nunjucks">nunjucks</a>
</p>
</div>
</main>
{% endblock %}