28 lines
489 B
TypeScript
28 lines
489 B
TypeScript
export const resources = {
|
|
"home": {
|
|
emoji: "home_icon.png",
|
|
name: "Home",
|
|
link: "/",
|
|
},
|
|
"recipe": {
|
|
emoji: "recipes_icon.png",
|
|
name: "Recipes",
|
|
link: "/recipes",
|
|
},
|
|
"movie": {
|
|
emoji: "movies_icon.png",
|
|
name: "Movies",
|
|
link: "/movies",
|
|
},
|
|
"article": {
|
|
emoji: "articles_icon.png",
|
|
name: "Articles",
|
|
link: "/articles",
|
|
},
|
|
"series": {
|
|
emoji: "tv_series_icon.png",
|
|
name: "Series",
|
|
link: "/series",
|
|
},
|
|
} as const;
|