Create a new page to display more buttons

This commit is contained in:
BuyMyMojo 2024-12-17 02:07:01 +11:00
parent 4bdb2ca436
commit e1c5eafc1d
Signed by: aria
GPG key ID: 19AB7AA462B8AB3B
14 changed files with 59 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -25,5 +25,6 @@ import Partition from "./Partition.astro";
<a href="/blog" class="nav-btn">Blog</a> | <a href="/blog" class="nav-btn">Blog</a> |
<a href="/about" class="nav-btn">About</a> | <a href="/about" class="nav-btn">About</a> |
<a href="/tags" class="nav-btn">Tags</a> | <a href="/tags" class="nav-btn">Tags</a> |
<a href="/friends" class="nav-btn">Friends</a> <a href="/friends" class="nav-btn">Friends</a> |
<a href="/other buttons" class="nav-btn">Moar 33x31</a>
</Partition> </Partition>

View file

@ -0,0 +1,57 @@
---
import FriendLink from "../components/FriendLink.astro";
import "../styles/aria.css";
import BaseLayout from "../layouts/BaseLayout.astro";
import Partition from "../components/Partition.astro";
const pageTitle = "Aria's friends";
---
<BaseLayout pageTitle={pageTitle}>
<Partition>
<h1 class="text-2xl">Here are some more 88x31 buttons:</h1>
<br />
<div class="flex outline-dotted p-2 flex-wrap">
<FriendLink
name="Low Tier God"
image="/static/img/88x31/lowtiergod.png"
target="/static/img/88x31/lowtiergod.png"
/>
<FriendLink
name="Krill Yourself 1"
image="/static/img/88x31/lowtiergura-1.png"
target="/static/img/88x31/lowtiergura-1.png"
/>
<FriendLink
name="Krill Yourself 2"
image="/static/img/88x31/lowtiergura-2.png"
target="/static/img/88x31/lowtiergura-2.pn"
/>
<FriendLink
name="Gura"
image="/static/img/88x31/Gura.png"
target="/static/img/88x31/Gura.png"
/>
<FriendLink
name="Vencord"
image="/static/img/88x31/vencord.gif"
target="https://vencord.dev/"
/>
<FriendLink
name="BlueSky"
image="/static/img/88x31/bluesky.gif"
target="https://bsky.app/"
/>
<FriendLink
name="FFXIV"
image="/static/img/88x31/ffxiv.gif"
target="https://na.finalfantasyxiv.com/"
/>
<FriendLink
name="Astro"
image="/static/img/88x31/astro.png"
target="https://astro.build/"
/>
</div>
</Partition>
</BaseLayout>