2021-04-13 20:22:14 +02:00
|
|
|
const PAGES = require('../../ui/constants/pages');
|
2021-03-19 15:53:11 +01:00
|
|
|
|
|
|
|
// Uncomment as you add metadata
|
2021-03-08 08:28:35 +01:00
|
|
|
|
|
|
|
module.exports.CATEGORY_METADATA = {
|
2022-01-17 18:40:18 +01:00
|
|
|
[PAGES.BIG_HITS]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Big Hits',
|
|
|
|
description: 'Animation, pop culture, comedy, and all the other weird on Odysee',
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.COMMUNITY]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'The Universe',
|
|
|
|
description: 'Podcasts, life, learning, and everything else on Odysee',
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
// [PAGES.CREATIVE_ARTS]: () => ({
|
|
|
|
// title: 'Creative Arts',
|
|
|
|
// description: '', <----- FILL IN PLEASE
|
|
|
|
// image: '', <----- FILL IN PLEASE
|
|
|
|
// }),
|
|
|
|
// [PAGES.ENLIGHTENMENT]: () => ({
|
2021-03-19 15:53:11 +01:00
|
|
|
// title: '',
|
|
|
|
// description: '',
|
|
|
|
// image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
// }),
|
|
|
|
[PAGES.FINANCE]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Finance 2.0',
|
|
|
|
description: 'Crypto, Money, Economics, Markets on Odysee ',
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-finance:c.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.GAMING]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Gaming',
|
|
|
|
description: 'Pew pew bzzz gaming on Odysee',
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-gaming:5.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.GENERAL]: () => ({
|
2021-05-27 19:18:23 +02:00
|
|
|
title: 'Cheese',
|
|
|
|
description: 'Cheese is the answer to life, the universe, and everything. We have primo cheese on Odysee',
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-primary1:5.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.LAB]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Lab',
|
|
|
|
description: 'Science - the real kind, on Odysee',
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.NEWS]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'News & Politics',
|
|
|
|
description: `Stay up to date with all that's happening around the world on Odysee`,
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.MOVIES]: () => ({
|
2021-05-27 19:18:23 +02:00
|
|
|
title: 'Movies',
|
|
|
|
description: `Do you love B rated movies? We've got you covered on Odysee`,
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-movies:2.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.MUSIC]: () => ({
|
2021-07-23 17:49:44 +02:00
|
|
|
title: 'Music',
|
|
|
|
description: 'All the songs, reviews, covers, and how-tos you love on Odysee',
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-music:8.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.SEARCH]: ({ q = '' }) => {
|
|
|
|
if (!q) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
title: `"${q}" Search Results`,
|
|
|
|
description: `Find the best "${q}" content on Odysee`,
|
|
|
|
urlQueryString: `q=${q}`,
|
|
|
|
};
|
2021-07-23 17:49:44 +02:00
|
|
|
},
|
2022-01-17 18:40:18 +01:00
|
|
|
[PAGES.TECH]: () => ({
|
2021-10-04 05:20:58 +02:00
|
|
|
title: 'Tech',
|
|
|
|
description: 'Hardware, software, startups, photography on Odysee',
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.TECHNOLOGY]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Tech',
|
|
|
|
description: 'Hardware, software, startups, photography on Odysee',
|
|
|
|
image: '',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
|
|
|
[PAGES.WILD_WEST]: () => ({
|
2021-04-13 20:22:14 +02:00
|
|
|
title: 'Wild West',
|
|
|
|
description: 'Boosted by user credits, this is what the community promotes on Odysee',
|
2021-11-30 01:31:23 +01:00
|
|
|
image: 'https://cdn.lbryplayer.xyz/speech/category-wildwest:1.jpg',
|
2022-01-17 18:40:18 +01:00
|
|
|
}),
|
2021-03-08 08:28:35 +01:00
|
|
|
};
|