Wowie what a gay little website for my gay little self aria.coffee
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create a new page to display more buttons

+59 -1
public/static/img/88x31/Gura.png

This is a binary file and will not be displayed.

public/static/img/88x31/astro.png

This is a binary file and will not be displayed.

public/static/img/88x31/bluesky.gif

This is a binary file and will not be displayed.

public/static/img/88x31/ffxiv.gif

This is a binary file and will not be displayed.

public/static/img/88x31/lowtiergod.png

This is a binary file and will not be displayed.

public/static/img/88x31/lowtiergura-1.png

This is a binary file and will not be displayed.

public/static/img/88x31/lowtiergura-2.png

This is a binary file and will not be displayed.

public/static/img/88x31/vencord.gif

This is a binary file and will not be displayed.

public/static/img/buttons/Gura.png

This is a binary file and will not be displayed.

public/static/img/buttons/lowtiergod.png

This is a binary file and will not be displayed.

public/static/img/buttons/lowtiergura-1.png

This is a binary file and will not be displayed.

public/static/img/buttons/lowtiergura-2.png

This is a binary file and will not be displayed.

+2 -1
src/components/NavHeader.astro
··· 25 25 <a href="/blog" class="nav-btn">Blog</a> | 26 26 <a href="/about" class="nav-btn">About</a> | 27 27 <a href="/tags" class="nav-btn">Tags</a> | 28 - <a href="/friends" class="nav-btn">Friends</a> 28 + <a href="/friends" class="nav-btn">Friends</a> | 29 + <a href="/other buttons" class="nav-btn">Moar 33x31</a> 29 30 </Partition>
+57
src/pages/other buttons.astro
··· 1 + --- 2 + import FriendLink from "../components/FriendLink.astro"; 3 + import "../styles/aria.css"; 4 + import BaseLayout from "../layouts/BaseLayout.astro"; 5 + import Partition from "../components/Partition.astro"; 6 + 7 + const pageTitle = "Aria's friends"; 8 + --- 9 + 10 + <BaseLayout pageTitle={pageTitle}> 11 + <Partition> 12 + <h1 class="text-2xl">Here are some more 88x31 buttons:</h1> 13 + <br /> 14 + <div class="flex outline-dotted p-2 flex-wrap"> 15 + <FriendLink 16 + name="Low Tier God" 17 + image="/static/img/88x31/lowtiergod.png" 18 + target="/static/img/88x31/lowtiergod.png" 19 + /> 20 + <FriendLink 21 + name="Krill Yourself 1" 22 + image="/static/img/88x31/lowtiergura-1.png" 23 + target="/static/img/88x31/lowtiergura-1.png" 24 + /> 25 + <FriendLink 26 + name="Krill Yourself 2" 27 + image="/static/img/88x31/lowtiergura-2.png" 28 + target="/static/img/88x31/lowtiergura-2.pn" 29 + /> 30 + <FriendLink 31 + name="Gura" 32 + image="/static/img/88x31/Gura.png" 33 + target="/static/img/88x31/Gura.png" 34 + /> 35 + <FriendLink 36 + name="Vencord" 37 + image="/static/img/88x31/vencord.gif" 38 + target="https://vencord.dev/" 39 + /> 40 + <FriendLink 41 + name="BlueSky" 42 + image="/static/img/88x31/bluesky.gif" 43 + target="https://bsky.app/" 44 + /> 45 + <FriendLink 46 + name="FFXIV" 47 + image="/static/img/88x31/ffxiv.gif" 48 + target="https://na.finalfantasyxiv.com/" 49 + /> 50 + <FriendLink 51 + name="Astro" 52 + image="/static/img/88x31/astro.png" 53 + target="https://astro.build/" 54 + /> 55 + </div> 56 + </Partition> 57 + </BaseLayout>