parity with main website

This commit is contained in:
Fishandchips321 2026-01-15 13:44:45 +00:00
parent 8d3f884af2
commit a64de4d672
81 changed files with 1913 additions and 1087 deletions

6
src/lib/BadgeInfo.ts Normal file
View file

@ -0,0 +1,6 @@
export default interface BadgeInfo {
image: string;
url?: string | null;
title?: string | null;
alt?: string | null;
}

16
src/lib/FriendBadges.ts Normal file
View file

@ -0,0 +1,16 @@
import type BadgeInfo from "./BadgeInfo";
const FriendBadgesPath = "/Badges/Friends/";
const FriendBadges: Array<BadgeInfo> = [
{
image: FriendBadgesPath + "autumnvleaves.jpg",
url: "https://autumnvleaves.pages.gay/"
},
{
image: FriendBadgesPath + "eva_poti_chat.png",
url: "https://www.poti.chat",
}
]
export default FriendBadges;

130
src/lib/OtherBadges.ts Normal file
View file

@ -0,0 +1,130 @@
import type BadgeInfo from "./BadgeInfo";
const OtherBadgePath = "/Badges/Other/"
const OtherBadges: Array<BadgeInfo> = [
{
image: OtherBadgePath + "riley-button.jpg",
url: "https://foxgirlriley.neocities.org",
title: "meeeeeeeee",
alt: "riley :3"
},
{
image: OtherBadgePath + "tumblr.png",
url: "https://tumblr.com/foxgirlriley",
title: "my tumbs :3",
alt: "tumblr"
},
{
image: OtherBadgePath + "wafrn.webp",
url: "https://app.wafrn.net/blog/foxgirlriley",
title: "i'm on wafrn!",
alt: "wafrn"
},
{
image: OtherBadgePath + "pronouns_sheher.gif",
title: "i'm a tranny :D",
alt: "trans flag with she/her pronouns"
},
{
image: OtherBadgePath + "flag-pan.png",
title: "i'm a faggot! :D",
alt: "pansexual flag"
},
{
image: OtherBadgePath + "hrt-e2.gif",
title: "hopefully soon!",
alt: "powered by estrogen with spinning estrogen pill"
},
{
image: OtherBadgePath + "trans-your-gender.gif",
title: "trans your gender",
alt: "trans your gender"
},
{
image: OtherBadgePath + "trans-bouncy.gif",
alt: "trans"
},
{
image: OtherBadgePath + "maia.crimew.gay.png",
url: "https://maia.crimew.gay",
title: "the crime kitty",
alt: "maia dot crimew dot gay"
},
{
image: OtherBadgePath + "firefox.gif",
url: "https://www.firefox.com/en-GB/",
alt: "firefox now!"
},
{
image: OtherBadgePath + "anythingbut.gif",
alt: "anything but chrome",
title: "this is a chrome haters website >:("
},
{
image: OtherBadgePath + "same-shit-different-arsehole.gif",
alt: "same shit different arsehole",
title: "it's all chrome!!!!!"
},
{
image: OtherBadgePath + "linux_mint.gif",
url: "https://www.linuxmint.com",
alt: "linux mint",
title: "my current flavour :3"
},
{
image: OtherBadgePath + "88x31.gif",
alt: "88 by 31",
url: "https://88x31.kate.pet/",
title: "moar badges :D"
},
{
image: OtherBadgePath + "piracy.gif",
alt: "piracy now",
title: "for legal reasons this is a joke"
},
{
image: OtherBadgePath + "i-was-on-cohost.gif",
alt: "i was on cohost",
title: "rip eggbug"
},
{
image: OtherBadgePath + "jellyfin.gif",
alt: "jellyfin"
},
{
image: OtherBadgePath + "kde.gif",
alt: "kde now!"
},
{
image: OtherBadgePath + "proxmox.gif",
alt: "proxmox"
},
{
image: OtherBadgePath + "docker.png",
alt: "powered by docker"
},
{
image: OtherBadgePath + "qbittorrent.png",
alt: "don't forget to seed!",
title: "don't forget to seed!"
},
{
image: OtherBadgePath + "steam.gif",
alt: "play with steam"
},
{
image: OtherBadgePath + "ubo.png",
alt: "ublock origin now!"
},
{
image: OtherBadgePath + "vlc.png",
alt: "vlc media player"
},
{
image: OtherBadgePath + "vscbutton.gif",
alt: "visual studio code"
}
]
export default OtherBadges;