mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
103 lines
2.4 KiB
TypeScript
103 lines
2.4 KiB
TypeScript
// 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 = [
|
|
{
|
|
icon: 'networking',
|
|
name: 'networking',
|
|
description: 'Kooperation, Aktionsbündnisse, Solidarität, Hilfe',
|
|
},
|
|
{
|
|
icon: 'home',
|
|
name: 'home',
|
|
description: 'Bauen, Lebensgemeinschaften, Tiny Houses, Gemüsegarten',
|
|
},
|
|
{
|
|
icon: 'energy',
|
|
name: 'energy',
|
|
description: 'Öl, Gas, Kohle, Wind, Wasserkraft, Biogas, Atomenergie, ...',
|
|
},
|
|
{
|
|
icon: 'psyche',
|
|
name: 'psyche',
|
|
description: 'Seele, Gefühle, Glück',
|
|
},
|
|
{
|
|
icon: 'movement',
|
|
name: 'body-and-excercise',
|
|
description: 'Sport, Yoga, Massage, Tanzen, Entspannung',
|
|
},
|
|
{
|
|
icon: 'balance-scale',
|
|
name: 'law',
|
|
description: 'Menschenrechte, Gesetze, Verordnungen',
|
|
},
|
|
{
|
|
icon: 'finance',
|
|
name: 'finance',
|
|
description: 'Geld, Finanzsystem, Alternativwährungen, ...',
|
|
},
|
|
{
|
|
icon: 'child',
|
|
name: 'children',
|
|
description: 'Familie, Pädagogik, Schule, Prägung',
|
|
},
|
|
{
|
|
icon: 'mobility',
|
|
name: 'mobility',
|
|
description: 'Reise, Verkehr, Elektromobilität',
|
|
},
|
|
{
|
|
icon: 'shopping-cart',
|
|
name: 'economy',
|
|
description: 'Handel, Konsum, Marketing, Lebensmittel, Lieferketten, ...',
|
|
},
|
|
{
|
|
icon: 'peace',
|
|
name: 'peace',
|
|
description: 'Krieg, Militär, soziale Verteidigung, Waffen, Cyberattacken',
|
|
},
|
|
{
|
|
icon: 'politics',
|
|
name: 'politics',
|
|
description: 'Demokratie, Mitbestimmung, Wahlen, Korruption, Parteien',
|
|
},
|
|
{
|
|
icon: 'nature',
|
|
name: 'nature',
|
|
description: 'Tiere, Pflanzen, Landwirtschaft, Ökologie, Artenvielfalt',
|
|
},
|
|
{
|
|
icon: 'science',
|
|
name: 'science',
|
|
description: 'Bildung, Hochschule, Publikationen, ...',
|
|
},
|
|
{
|
|
icon: 'health',
|
|
name: 'health',
|
|
description: 'Medizin, Ernährung, WHO, Impfungen, Schadstoffe, ...',
|
|
},
|
|
{
|
|
icon: 'media',
|
|
name: 'it-and-media',
|
|
description:
|
|
'Nachrichten, Manipulation, Datenschutz, Überwachung, Datenkraken, AI, Software, Apps',
|
|
},
|
|
{
|
|
icon: 'spirituality',
|
|
name: 'spirituality',
|
|
description: 'Religion, Werte, Ethik',
|
|
},
|
|
{
|
|
icon: 'culture',
|
|
name: 'culture',
|
|
description: 'Kunst, Theater, Musik, Fotografie, Film',
|
|
},
|
|
{
|
|
icon: 'miscellaneous',
|
|
name: 'miscellaneous',
|
|
description: '',
|
|
},
|
|
]
|