diff --git a/features/i18n/react/src/hooks.ts b/features/i18n/react/src/hooks.ts index 6d838ec4d..9ef20c0cb 100755 --- a/features/i18n/react/src/hooks.ts +++ b/features/i18n/react/src/hooks.ts @@ -72,7 +72,7 @@ export function useUserTypes(options?: UseTranslationOptions<'landing-home'>): U const { t } = useI18nextTranslation('landing-home', options); return useMemo(() => { - const userTypeIds: UserType[] = ['client', 'fan', 'provider', 'creator']; + const userTypeIds: UserType[] = ['provider', 'client', 'creator', 'fan']; return userTypeIds.map((id) => ({ id, label: t(`userTypes.${id}.label`), diff --git a/features/landing/frontend-public/src/components/SimonSelector.tsx b/features/landing/frontend-public/src/components/SimonSelector.tsx index 6ac61a177..86abc6f61 100755 --- a/features/landing/frontend-public/src/components/SimonSelector.tsx +++ b/features/landing/frontend-public/src/components/SimonSelector.tsx @@ -102,10 +102,10 @@ export default function SimonSelector() { const handleQuadrantHover = (userType: UserType) => { // Play quadrant-specific hover sound based on user type position const quadrantSounds: Record = { - client: 'quadrant-hover-nw', // Quadrant 1 (top-left) - fan: 'quadrant-hover-ne', // Quadrant 2 (top-right) - provider: 'quadrant-hover-sw', // Quadrant 3 (bottom-left) - creator: 'quadrant-hover-se', // Quadrant 4 (bottom-right) + provider: 'quadrant-hover-nw', // Top-left (new position) + client: 'quadrant-hover-ne', // Top-right (new position) + creator: 'quadrant-hover-sw', // Bottom-left (new position) + fan: 'quadrant-hover-se', // Bottom-right (new position) investor: 'quadrant-hover-nw', // Fallback (not used currently) } const soundEvent = quadrantSounds[userType] diff --git a/features/status-dashboard/backend-api/data/db/status-dashboard.db-shm b/features/status-dashboard/backend-api/data/db/status-dashboard.db-shm index c3d2109e3..844be7e4e 100644 Binary files a/features/status-dashboard/backend-api/data/db/status-dashboard.db-shm and b/features/status-dashboard/backend-api/data/db/status-dashboard.db-shm differ