feat: new socials and a meme manifesto (#28)

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/28
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-10-18 22:10:02 +00:00
committed by Naomi the Technomancer
parent 28c9921777
commit 48c4d1a691
5 changed files with 249 additions and 3 deletions

View File

@ -10,5 +10,6 @@ export const NavItems = [
{ href: "/polycule", text: "Polycule"},
{ href: "/activity", text: "Activity"},
{ href: "/art", text: "Art"},
{ href: "https://nhcarrigan.creator-spring.com/", text: "Merch"}
{ href: "https://nhcarrigan.creator-spring.com/", text: "Merch"},
{ href: "/manifesto", text: "Transfemme Manifesto"},
].sort((a, b) => a.text.localeCompare(b.text));

View File

@ -9,6 +9,7 @@ import { Pixiv } from "@/icons/Pixiv";
import { Polywork } from "@/icons/Polywork";
import { Saylor } from "@/icons/Saylor";
import { TeeSpring } from "@/icons/TeeSpring";
import { TreeNation } from "@/icons/TreeNation";
import { VRoid } from "@/icons/VRoid";
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
import {
@ -22,6 +23,7 @@ import {
faItchIo,
faLinkedinIn,
faMastodon,
faMeetup,
faNpm,
faPatreon,
faPaypal,
@ -469,5 +471,21 @@ export const Socials: {
icon: faGooglePlus,
background: "#DB4437",
color: "#FFF",
}
},
{
label: "Tree Nation",
link: "https://tree-nation.com/profile/naomi-carrigan",
alt: "Tree Nation Logo",
icon: TreeNation,
background: "#FFF",
color: "#55C1A8",
},
{
label: "Meetup",
link: "https://www.meetup.com/members/437962584/",
alt: "Meetup Logo",
icon: faMeetup,
background: "#FF6D00",
color: "#FFF",
},
];