lbry-desktop/web/src/category-metadata.js

88 lines
2.7 KiB
JavaScript
Raw Normal View History

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
module.exports.CATEGORY_METADATA = {
2022-02-03 17:02:23 +01:00
[PAGES.CREATIVE_ARTS]: () => ({
title: 'Creative Arts',
description: `Odysee's home for art, animation, comedy, and everything inbetween`,
image: '',
}),
[PAGES.EDUCATION]: () => ({
title: 'Education',
description: `Who needs school when there's Odysee?`,
image: '',
}),
[PAGES.FEATURED]: () => ({
title: 'Featured',
description: 'Showcasing some of the best content Odysee has to offer',
image: '',
}),
[PAGES.FINANCE]: () => ({
2021-04-13 20:22:14 +02:00
title: 'Finance 2.0',
2022-02-03 17:02:23 +01:00
description: 'Crypto, Money, Economics, Markets on Odysee',
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-finance:c.jpg',
}),
[PAGES.GAMING]: () => ({
2021-04-13 20:22:14 +02:00
title: 'Gaming',
description: 'Pew pew bzzz gaming on Odysee',
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-gaming:5.jpg',
}),
[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',
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-primary1:5.jpg',
}),
[PAGES.LAB]: () => ({
2021-04-13 20:22:14 +02:00
title: 'Lab',
description: 'Science - the real kind, on Odysee',
image: '',
}),
[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: '',
}),
[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`,
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-movies:2.jpg',
}),
[PAGES.MUSIC]: () => ({
2021-07-23 17:49:44 +02:00
title: 'Music',
2022-02-03 17:02:23 +01:00
description: 'Get your groove on with Odysee',
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-music:8.jpg',
}),
[PAGES.POP_CULTURE]: () => ({
title: 'Big Hits',
description: 'Animation, pop culture, comedy, and all the other weird on Odysee',
image: '',
}),
[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
},
[PAGES.TECH]: () => ({
title: 'Tech',
description: 'Hardware, software, startups, photography on Odysee',
image: '',
}),
[PAGES.UNIVERSE]: () => ({
title: 'The Universe',
description: 'Podcasts, life, learning, and everything else on Odysee',
2021-04-13 20:22:14 +02:00
image: '',
}),
[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',
2022-02-08 19:09:38 +01:00
image: 'https://player.odycdn.com/speech/category-wildwest:1.jpg',
}),
};