implemented step 07

- added categories for 1. step in wizard
This commit is contained in:
2026-06-12 19:01:34 +02:00
parent b4960c4e39
commit 0e0670574d
6 changed files with 388 additions and 9 deletions

55
data/categories.json Normal file
View File

@ -0,0 +1,55 @@
{
"categories": [
{
"id": "gastro",
"name": "Gastro",
"subcategories": [
{"id": "restaurant", "name": "Reštaurácia"},
{"id": "pizza", "name": "Pizzeria"},
{"id": "cafe", "name": "Kaviareň / Bistro"},
{"id": "bar", "name": "Bar / Pub"},
{"id": "catering", "name": "Catering"}
]
},
{
"id": "beauty",
"name": "Krása a Zdravie",
"subcategories": [
{"id": "barber", "name": "Barber / Kaderníctvo"},
{"id": "cosmetics", "name": "Kozmetický salón"},
{"id": "nails", "name": "Manikúra / Pedikúra"},
{"id": "fitness", "name": "Fitness / Gym"},
{"id": "dentist", "name": "Zubár / Poliklinika"}
]
},
{
"id": "crafts",
"name": "Remeslá a Služby",
"subcategories": [
{"id": "plumber", "name": "Inštalatér"},
{"id": "electrician", "name": "Elektrikár"},
{"id": "builder", "name": "Stavebné práce"},
{"id": "mechanic", "name": "Autoservis"},
{"id": "cleaning", "name": "Upratovacie služby"}
]
},
{
"id": "professional",
"name": "Odborné služby",
"subcategories": [
{"id": "lawyer", "name": "Právnik / Advokát"},
{"id": "accountant", "name": "Účtovník"},
{"id": "consulting", "name": "Konzultant / Kouč"},
{"id": "marketing", "name": "Marketingová agentúra"},
{"id": "it_services", "name": "IT služby / Software"}
]
},
{
"id": "other",
"name": "Iné",
"subcategories": [
{"id": "custom", "name": "Vlastná kategória"}
]
}
]
}