feat: add public employee profile view and implement ratings review page components

This commit is contained in:
2026-07-22 16:27:46 -03:00
parent 279e1b54cc
commit dd3e07311d
27 changed files with 1621 additions and 304 deletions
+22
View File
@@ -0,0 +1,22 @@
export type PublicCompanyEmployeeView = {
employeeId: string;
userId: string;
firstName: string;
lastName: string;
avatarUrl: string;
};
export type FindPublicCompanyEmployeesParams = {
companyId: string;
};
export type FindPublicEmployeeParams = {
employeeId: string;
};
export type PublicEmployeeView = {
employeeId: string;
firstName: string;
lastName: string;
avatarUrl: string;
};