feat: add art component (#26)

Reviewed-on: https://codeberg.org/nhcarrigan/portfolio/pulls/26
Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit is contained in:
2024-10-12 17:17:36 +00:00
committed by Naomi the Technomancer
parent 3ec2510a0b
commit 1801749c8f
4 changed files with 93 additions and 0 deletions

37
src/config/Art.ts Normal file
View File

@ -0,0 +1,37 @@
export const Art: {
name: string;
img: string;
artist: string;
url: string;
}[] = [
{
name: "Avatar",
img: "profile.png",
artist: "Jazzybee",
url: "https://jazzybee.itch.io/sdvcharactercreator"
},
{
name: "AI Bot",
img: "ai-bot.png",
artist: "Picrew",
url: "https://picrew.me/en/image_maker/1382748"
},
{
name: "Mod Bot",
img: "mod-bot.png",
artist: "Picrew",
url: "https://picrew.me/en/image_maker/27700"
},
{
name: "Translation Bot",
img: "translation-bot.png",
artist: "Picrew",
url: "https://picrew.me/en/image_maker/3595"
},
{
name: "Task Bot",
img: "task-bot.png",
artist: "Picrew",
url: "https://picrew.me/en/image_maker/700620"
}
]

View File

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