Migrate all routes

This commit is contained in:
aronmal 2023-11-09 14:55:27 +01:00
parent 036a2d1e4a
commit ea5a815c2c
Signed by: aronmal
GPG key ID: 816B7707426FC612
13 changed files with 621 additions and 480 deletions

View file

@ -1,30 +1,49 @@
export default function Stack() {
return (
<>
<section>
<img src={"https://static.moonleay.net/img/lilJuddWeb/logos/kotlin.svg"} alt={"Kotlin 'K' logo"}/>
<h1>The Kotlin programming language</h1>
<p>I chose this programming language because it is my main one. There is nothing more to that.</p>
</section>
<section>
<img src={"https://static.moonleay.net/img/lilJuddWeb/logos/kord.png"} alt={"The Kord logo"}/>
<h1>The Kord library</h1>
<p>A Kotlin library for creating Discord bots. Pretty bare bones.</p>
</section>
<section>
<img src={"https://static.moonleay.net/img/lilJuddWeb/logos/kordextensions.png"} alt={"The Kord-Extensions logo"}/>
<h1>The Kord Extensions library</h1>
<p>A Kotlin library to improve the Kord experience.</p>
</section>
<section>
<img src={"https://static.moonleay.net/img/lilJuddWeb/logos/pgelephant.png"} alt={"The PostgreSQL elephant"}/>
<h1>The PostgreSQL database</h1>
<p>A fast and reliable database. Also something, which I already used beforehand.</p>
</section>
<section>
<p>To see all used libraries and their licenses, check the Acknowledgements.</p>
</section>
</>
)
}
---
import Layout from "@layouts/Layout.astro";
---
<Layout>
<section>
<img
src="https://static.moonleay.net/img/lilJuddWeb/logos/kotlin.svg"
alt="Kotlin 'K' logo"
/>
<h1>The Kotlin programming language</h1>
<p>
I chose this programming language because it is my main one. There is
nothing more to that.
</p>
</section>
<section>
<img
src="https://static.moonleay.net/img/lilJuddWeb/logos/kord.png"
alt="The Kord logo"
/>
<h1>The Kord library</h1>
<p>A Kotlin library for creating Discord bots. Pretty bare bones.</p>
</section>
<section>
<img
src="https://static.moonleay.net/img/lilJuddWeb/logos/kordextensions.png"
alt="The Kord-Extensions logo"
/>
<h1>The Kord Extensions library</h1>
<p>A Kotlin library to improve the Kord experience.</p>
</section>
<section>
<img
src="https://static.moonleay.net/img/lilJuddWeb/logos/pgelephant.png"
alt="The PostgreSQL elephant"
/>
<h1>The PostgreSQL database</h1>
<p>
A fast and reliable database. Also something, which I already used
beforehand.
</p>
</section>
<section>
<p>
To see all used libraries and their licenses, check the Acknowledgements.
</p>
</section>
</Layout>