Create a new page to display more buttons
BIN
public/static/img/88x31/Gura.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/static/img/88x31/astro.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
public/static/img/88x31/bluesky.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
public/static/img/88x31/ffxiv.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
public/static/img/88x31/lowtiergod.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
public/static/img/88x31/lowtiergura-1.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
public/static/img/88x31/lowtiergura-2.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
public/static/img/88x31/vencord.gif
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/static/img/buttons/Gura.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/static/img/buttons/lowtiergod.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
public/static/img/buttons/lowtiergura-1.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
public/static/img/buttons/lowtiergura-2.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
|
@ -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>
|
||||||
|
|
57
src/pages/other buttons.astro
Normal 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>
|