mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* Fix favicon and icon * - fixed menu item colors - fixed footer item colors * - fixed input focus * - fixed slug color - fixed primary button hover color * - fixed chat colors * - fixed editor button colors * Add logo-r-circle.svg * Add new settings in logos.js and logos.ts * Brand 'categories.*' files * Add brand categories to locales * Add 'categories.*' SVGs * Move categories SVGs to folder 'webapp/assets/_new/icons/svgs' * Change paths to icon name * Remove gender language * Remove '.svg' from icon names and replace underscores by dashes --------- Co-authored-by: Sebastian Stein <sebastian@codepassion.de>
91 lines
1.7 KiB
JavaScript
91 lines
1.7 KiB
JavaScript
// this file is duplicated in `backend/src/constants/metadata` and `webapp/constants/metadata.js`
|
|
export const CATEGORIES_MIN = 1
|
|
export const CATEGORIES_MAX = 3
|
|
|
|
export const categories = [
|
|
{
|
|
id: 'corona',
|
|
slug: 'corona',
|
|
name: 'corona',
|
|
icon: 'reformer-corona',
|
|
},
|
|
{
|
|
id: 'digital-euro',
|
|
slug: 'digital-euro',
|
|
name: 'digital-euro',
|
|
icon: 'reformer-digital-euro',
|
|
},
|
|
{
|
|
id: 'who',
|
|
slug: 'who',
|
|
name: 'who',
|
|
icon: 'reformer-who',
|
|
},
|
|
{
|
|
id: 'monetary-system',
|
|
slug: 'monetary-system',
|
|
name: 'monetary-system',
|
|
icon: 'reformer-monetary-system',
|
|
},
|
|
{
|
|
id: 'basic-rights',
|
|
slug: 'basic-rights',
|
|
name: 'basic-rights',
|
|
icon: 'reformer-basic-rights',
|
|
},
|
|
{
|
|
id: 'justice',
|
|
slug: 'justice',
|
|
name: 'justice',
|
|
icon: 'reformer-justice',
|
|
},
|
|
{
|
|
id: 'demonstrations',
|
|
slug: 'demonstrations',
|
|
name: 'demonstrations',
|
|
icon: 'reformer-demonstrations',
|
|
},
|
|
{
|
|
id: 'child-protection',
|
|
slug: 'child-protection',
|
|
name: 'child-protection',
|
|
icon: 'reformer-child-protection',
|
|
},
|
|
{
|
|
id: 'transhumanism',
|
|
slug: 'transhumanism',
|
|
name: 'transhumanism',
|
|
icon: 'reformer-transhumanism',
|
|
},
|
|
{
|
|
id: 'surveillance',
|
|
slug: 'surveillance',
|
|
name: 'surveillance',
|
|
icon: 'reformer-surveillance',
|
|
},
|
|
{
|
|
id: 'education',
|
|
slug: 'education',
|
|
name: 'education',
|
|
icon: 'reformer-education',
|
|
},
|
|
{
|
|
id: 'media',
|
|
slug: 'media',
|
|
name: 'media',
|
|
icon: 'reformer-media',
|
|
},
|
|
{
|
|
id: 'ngos',
|
|
slug: 'ngos',
|
|
name: 'ngos',
|
|
icon: 'reformer-ngos',
|
|
},
|
|
{
|
|
id: 'miscellaneous',
|
|
slug: 'miscellaneous',
|
|
name: 'miscellaneous',
|
|
icon: 'reformer-miscellaneous',
|
|
},
|
|
]
|