generated from nhcarrigan/template
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:
37
src/config/Art.ts
Normal file
37
src/config/Art.ts
Normal 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"
|
||||
}
|
||||
]
|
@ -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));
|
||||
|
Reference in New Issue
Block a user