feat: add merch link, additional games (#21)

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/21
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-10-05 21:00:53 +00:00
committed by Naomi the Technomancer
parent 135e22778e
commit 3070d886d4
4 changed files with 88 additions and 1 deletions

View File

@ -45,5 +45,17 @@ export const Games: {
{
name: "Neverwinter Nights",
img: "nwn.jpg"
},
{
name: "Lords of the Fallen",
img: "lords-of-the-fallen.jpg"
},
{
name: "VRoid",
img: "vroid.png"
},
{
name: "Koikatsu",
img: "koikatsu.png"
}
]

View File

@ -8,5 +8,6 @@ export const NavItems = [
{ href: "/games", text: "Games"},
{ href: "/team", text: "Our Team" },
{ href: "/polycule", text: "Polycule"},
{ href: "/activity", text: "Activity"}
{ href: "/activity", text: "Activity"},
{ href: "https://nhcarrigan.creator-spring.com/", text: "Merch"}
].sort((a, b) => a.text.localeCompare(b.text));

View File

@ -8,6 +8,7 @@ import { Peerlist } from "@/icons/Peerlist";
import { Pixiv } from "@/icons/Pixiv";
import { Polywork } from "@/icons/Polywork";
import { Saylor } from "@/icons/Saylor";
import { TeeSpring } from "@/icons/TeeSpring";
import { VRoid } from "@/icons/VRoid";
import { IconDefinition } from "@fortawesome/fontawesome-svg-core";
import { faAngellist, faDiscord, faFreeCodeCamp, faGithub, faGrav, faHashnode, faItchIo, faLinkedinIn, faMastodon, faNpm, faPatreon, faPaypal, faReddit, faSignalMessenger, faSlack, faSteam, faStripe, faTwitch, faWordpress } from "@fortawesome/free-brands-svg-icons";
@ -394,5 +395,13 @@ export const Socials: {
icon: faAtom,
background: "#000",
color: "#FFF"
},
{
label: "Merch",
link: "https://nhcarrigan.creator-spring.com/",
"alt": "TeeSpring Logo",
icon: TeeSpring,
background: "#000",
color: "#FFF"
}
];