diff --git a/app/components/navigation/RoleSwitcher.vue b/app/components/navigation/RoleSwitcher.vue index 17deab1..b35c013 100644 --- a/app/components/navigation/RoleSwitcher.vue +++ b/app/components/navigation/RoleSwitcher.vue @@ -28,7 +28,7 @@ const roles: RoleOption[] = [ { value: 'individual', label: 'Privatperson', - description: 'Privatperson', + description: 'Private Nutzung', icon: User, color: 'text-purple-600', enabled: true, @@ -36,21 +36,21 @@ const roles: RoleOption[] = [ { value: 'educator', label: 'Pädagoge', - description: 'Pädagoge', + description: 'Lehrkräfte und Schulen', icon: GraduationCap, color: 'text-orange-500', - enabled: false, - badge: 'Demnächst', + enabled: true, + // badge: 'Demnächst', + }, + { + value: 'company', + label: 'Firma', + description: 'Geschäftskunden', + icon: Building2, + color: 'text-blue-600', + enabled: true, + // badge: 'Demnächst', }, - // { - // value: 'company', - // label: 'Firma', - // description: 'Firma', - // icon: Building2, - // color: 'text-blue-600', - // enabled: false, - // badge: 'Demnächst', - // }, ] // Current role - will come from user session later @@ -100,11 +100,17 @@ function switchRole(role: UserRole) {
- 💡 Weitere Rollen werden in Kürze verfügbar sein. + 💡 Die Rolle bestimmt, welche Produkte und Konditionen dir angezeigt werden.