memorium/lib/resources.ts

33 lines
653 B
TypeScript
Raw Permalink Normal View History

2023-08-06 17:47:26 +02:00
export const resources = {
"home": {
2023-08-09 15:20:14 +02:00
emoji: "House with Garden.png",
2023-08-06 17:47:26 +02:00
name: "Home",
link: "/",
prefix: "",
},
"recipe": {
2023-08-09 15:20:14 +02:00
emoji: "Fork and Knife with Plate.png",
2023-08-06 17:47:26 +02:00
name: "Recipes",
link: "/recipes",
prefix: "Recipes/",
},
"movie": {
2023-08-09 15:20:14 +02:00
emoji: "Popcorn.png",
2023-08-06 17:47:26 +02:00
name: "Movies",
link: "/movies",
prefix: "Media/movies/",
},
"article": {
2023-08-09 15:20:14 +02:00
emoji: "Writing Hand Medium-Light Skin Tone.png",
2023-08-06 17:47:26 +02:00
name: "Articles",
link: "/articles",
prefix: "Media/articles/",
},
2023-08-07 14:44:04 +02:00
"series": {
2023-08-09 15:20:14 +02:00
emoji: "Television.png",
2023-08-07 14:44:04 +02:00
name: "Series",
link: "/series",
prefix: "Media/series/",
},
2023-08-06 17:47:26 +02:00
} as const;