first commit

This commit is contained in:
Leonardo
2026-02-18 22:36:45 -03:00
parent ec6b6ef53a
commit 676042268b
122 changed files with 26354 additions and 1615 deletions

11
src/constants/roles.js Normal file
View File

@@ -0,0 +1,11 @@
export const ROLES = {
ADMIN: 'admin',
THERAPIST: 'therapist',
PATIENT: 'patient'
}
export const ROLE_HOME = {
admin: '/admin',
therapist: '/therapist',
patient: '/patient'
}