style: login and config working

This commit is contained in:
aronmal 2024-01-16 20:22:23 +01:00
parent a657906f4f
commit 55b81fac91
Signed by: aronmal
GPG key ID: 816B7707426FC612
28 changed files with 2322 additions and 3469 deletions

View file

@ -1,10 +1,11 @@
import Layout from "~/components/Layout";
import "../styles/pages/stack.scss";
function stack() {
return (
<>
<h1 class="stack-title">The Stack</h1>
<section class="stack-section">
<Layout site="stack">
<h1>The Stack</h1>
<section>
<img src="/assets/logos/kotlin.svg" alt="Kotlin 'K' logo" />
<div class="stackgrid_3 stackitm">
<h1>The Kotlin programming language</h1>
@ -14,14 +15,14 @@ function stack() {
</p>
</div>
</section>
<section class="stack-section">
<section>
<img src="/assets/logos/kord.png" alt="The Kord logo" />
<div class="stackgrid_3 stackitm">
<h1>The Kord library</h1>
<p>A Kotlin library for creating Discord bots. Pretty bare bones.</p>
</div>
</section>
<section class="stack-section">
<section>
<img
src="/assets/logos/kordextensions.png"
alt="The Kord-Extensions logo"
@ -31,7 +32,7 @@ function stack() {
<p>A Kotlin library to improve the Kord experience.</p>
</div>
</section>
<section class="stack-section">
<section>
<img src="/assets/logos/pgelephant.png" alt="The PostgreSQL elephant" />
<div class="stackgrid_3 stackitm">
<h1>The PostgreSQL database</h1>
@ -47,7 +48,7 @@ function stack() {
<a href="/acknowledgements">Acknowledgements</a>.
</p>
</section>
</>
</Layout>
);
}