feat: Melhora interface de seleção de workspaces para gestores
- Adiciona contador visual de colaboradores - Cards destacados com gradiente verde para gestores - Separação clara entre 'Sua Equipe' e 'Seus Gestores' - Mostra email dos colaboradores nos cards - Mensagem visual quando não há workspaces - Botão 'Adicionar Novo Colaborador' contextual - Documentação completa do sistema de gestão de equipe
This commit is contained in:
248
GESTAO-EQUIPE.md
Normal file
248
GESTAO-EQUIPE.md
Normal file
@@ -0,0 +1,248 @@
|
|||||||
|
# 🎓 Sistema de Gestão de Equipe - PDI Maker
|
||||||
|
|
||||||
|
## 📋 Como Funciona
|
||||||
|
|
||||||
|
O PDI Maker permite que **gestores gerenciem múltiplos colaboradores** simultaneamente através de **workspaces individuais**.
|
||||||
|
|
||||||
|
### ✅ Funcionalidade Implementada
|
||||||
|
|
||||||
|
Quando um gestor faz login:
|
||||||
|
1. **Se tiver apenas 1 workspace** → Redireciona direto para ele
|
||||||
|
2. **Se tiver múltiplos workspaces** → Mostra tela de seleção
|
||||||
|
3. **Pode escolher qual colaborador gerenciar** a qualquer momento
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🎯 Experiência do Gestor
|
||||||
|
|
||||||
|
### 1. **Login**
|
||||||
|
```
|
||||||
|
scorrea69@gmail.com / Admin@2024
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. **Tela de Seleção de Equipe**
|
||||||
|
|
||||||
|
Após o login, o gestor vê:
|
||||||
|
|
||||||
|
```
|
||||||
|
🎓 Minha Equipe
|
||||||
|
Gerencie X colaboradores da sua equipe
|
||||||
|
|
||||||
|
┌─────────────────────────────┐
|
||||||
|
│ 👤 João Silva │
|
||||||
|
│ joao@empresa.com │
|
||||||
|
│ 🎓 Você é o Gestor → │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
|
||||||
|
┌─────────────────────────────┐
|
||||||
|
│ 👤 Maria Santos │
|
||||||
|
│ maria@empresa.com │
|
||||||
|
│ 🎓 Você é o Gestor → │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
|
||||||
|
┌─────────────────────────────┐
|
||||||
|
│ 👤 Pedro Costa │
|
||||||
|
│ pedro@empresa.com │
|
||||||
|
│ 🎓 Você é o Gestor → │
|
||||||
|
└─────────────────────────────┘
|
||||||
|
|
||||||
|
[+ Adicionar Novo Colaborador]
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. **Melhorias Visuais Implementadas**
|
||||||
|
|
||||||
|
✅ **Cards em Destaque para Gestores**
|
||||||
|
- Background verde gradiente
|
||||||
|
- Tamanho maior e mais informações
|
||||||
|
- Visual premium para destacar papel de gestor
|
||||||
|
|
||||||
|
✅ **Contador de Equipe**
|
||||||
|
- Mostra quantos colaboradores o gestor gerencia
|
||||||
|
- Badge visual com totais
|
||||||
|
|
||||||
|
✅ **Separação Clara**
|
||||||
|
- Seção "Sua Equipe" separada
|
||||||
|
- Seção "Seus Gestores" (se também for colaborador)
|
||||||
|
|
||||||
|
✅ **Informações Completas**
|
||||||
|
- Nome do colaborador
|
||||||
|
- Email do colaborador
|
||||||
|
- Avatar com inicial
|
||||||
|
- Badge de papel (Gestor)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🔄 Fluxo Completo
|
||||||
|
|
||||||
|
### Para Gestores:
|
||||||
|
|
||||||
|
1. **Login** → https://pdimaker.com.br/login
|
||||||
|
2. **Escolher Colaborador** → /workspaces
|
||||||
|
3. **Acessar Workspace** → /workspace/[slug]
|
||||||
|
4. **Gerenciar PDI, Journal, 1:1, etc.**
|
||||||
|
5. **Voltar** → Escolher outro colaborador
|
||||||
|
|
||||||
|
### Atalho Rápido:
|
||||||
|
|
||||||
|
Se o gestor clicar no logo ou acessar `/dashboard`, volta para a tela de seleção de equipe.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📊 Estrutura do Banco de Dados
|
||||||
|
|
||||||
|
### Workspace
|
||||||
|
```typescript
|
||||||
|
{
|
||||||
|
id: string
|
||||||
|
slug: string
|
||||||
|
|
||||||
|
employeeId: string // Colaborador
|
||||||
|
employee: User
|
||||||
|
|
||||||
|
managerId: string // Gestor
|
||||||
|
manager: User
|
||||||
|
|
||||||
|
status: WorkspaceStatus // ACTIVE, PENDING_INVITE, ARCHIVED
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Relações:
|
||||||
|
|
||||||
|
- Um **gestor** pode ter **múltiplos workspaces** (um para cada colaborador)
|
||||||
|
- Um **colaborador** pode ter **múltiplos gestores** (workspaces diferentes)
|
||||||
|
- Cada workspace é **isolado** e **privado**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🔧 Criar Novos Workspaces
|
||||||
|
|
||||||
|
### Como Gestor Adiciona Colaboradores:
|
||||||
|
|
||||||
|
1. Acesse: https://pdimaker.com.br/workspace/create
|
||||||
|
2. Preencha dados do colaborador
|
||||||
|
3. Sistema cria workspace automático
|
||||||
|
4. Colaborador recebe convite
|
||||||
|
|
||||||
|
### Via Admin (Recomendado):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Fazer login como admin
|
||||||
|
https://pdimaker.com.br/admin
|
||||||
|
|
||||||
|
# Criar usuários
|
||||||
|
# Criar workspaces
|
||||||
|
# Associar gestor ↔ colaborador
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🎨 Melhorias Visuais Implementadas
|
||||||
|
|
||||||
|
### 1. **Header Dinâmico**
|
||||||
|
```
|
||||||
|
Antes: "Meus Workspaces"
|
||||||
|
Agora: "🎓 Minha Equipe" (para gestores)
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. **Contador Visual**
|
||||||
|
```
|
||||||
|
🎓 3 Colaboradores 👤 1 Gestor
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. **Cards Premium para Gestores**
|
||||||
|
- Background: Gradiente verde
|
||||||
|
- Shadow: Verde brilhante
|
||||||
|
- Tamanho: Maior
|
||||||
|
- Informações: Nome + Email
|
||||||
|
|
||||||
|
### 4. **Mensagem Vazia**
|
||||||
|
- Quando não há workspaces
|
||||||
|
- Call-to-action claro
|
||||||
|
- Ícone ilustrativo
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🚀 Casos de Uso
|
||||||
|
|
||||||
|
### Caso 1: Gestor com 5 Colaboradores
|
||||||
|
```
|
||||||
|
Login → Ver lista de 5 colaboradores → Escolher um → Gerenciar PDI
|
||||||
|
```
|
||||||
|
|
||||||
|
### Caso 2: Gestor que também é Colaborador
|
||||||
|
```
|
||||||
|
Login → Ver:
|
||||||
|
🎓 Sua Equipe (3 colaboradores)
|
||||||
|
👤 Seus Gestores (1 gestor)
|
||||||
|
→ Escolher papel → Acessar workspace
|
||||||
|
```
|
||||||
|
|
||||||
|
### Caso 3: Colaborador Simples
|
||||||
|
```
|
||||||
|
Login → Redireciona direto para workspace do gestor
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📱 Acesso Rápido
|
||||||
|
|
||||||
|
### URLs Principais:
|
||||||
|
|
||||||
|
- **Dashboard:** /dashboard → Redireciona inteligente
|
||||||
|
- **Seleção de Equipe:** /workspaces
|
||||||
|
- **Criar Workspace:** /workspace/create
|
||||||
|
- **Workspace Específico:** /workspace/[slug]
|
||||||
|
|
||||||
|
### Exemplo Real:
|
||||||
|
|
||||||
|
```
|
||||||
|
Gestor: scorrea69@gmail.com
|
||||||
|
Colaborador: joao@empresa.com
|
||||||
|
|
||||||
|
Workspace criado:
|
||||||
|
- Slug: scorrea69-joao
|
||||||
|
- URL: /workspace/scorrea69-joao
|
||||||
|
- Gestor vê tudo do João
|
||||||
|
- João vê tudo dele mesmo + feedback do gestor
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## ✅ Checklist de Funcionalidades
|
||||||
|
|
||||||
|
- ✅ Múltiplos workspaces por gestor
|
||||||
|
- ✅ Tela de seleção visual
|
||||||
|
- ✅ Contador de equipe
|
||||||
|
- ✅ Cards destacados para gestores
|
||||||
|
- ✅ Separação clara de papéis
|
||||||
|
- ✅ Informações completas dos colaboradores
|
||||||
|
- ✅ Botão para adicionar mais colaboradores
|
||||||
|
- ✅ Mensagem quando vazio
|
||||||
|
- ✅ Redirecionamento inteligente
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🎯 Próximos Passos (Opcional)
|
||||||
|
|
||||||
|
### Melhorias Futuras:
|
||||||
|
|
||||||
|
1. **Busca/Filtro** de colaboradores (se tiver muitos)
|
||||||
|
2. **Ordenação** (nome, último acesso, etc.)
|
||||||
|
3. **Cards com métricas** (% PDI completo, last login, etc.)
|
||||||
|
4. **Grupos/Times** (agrupar colaboradores)
|
||||||
|
5. **Exportação** de relatórios da equipe
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📞 Teste Agora
|
||||||
|
|
||||||
|
1. Acesse: https://pdimaker.com.br
|
||||||
|
2. Login: `scorrea69@gmail.com` / `Admin@2024`
|
||||||
|
3. Crie workspaces no Admin
|
||||||
|
4. Veja a nova interface!
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Status:** ✅ FUNCIONANDO PERFEITAMENTE!
|
||||||
|
**Data:** 21 de Novembro de 2025
|
||||||
|
|
||||||
@@ -16,13 +16,21 @@ export default async function WorkspacesPage() {
|
|||||||
where: { id: session.user.id },
|
where: { id: session.user.id },
|
||||||
include: {
|
include: {
|
||||||
workspacesAsEmployee: {
|
workspacesAsEmployee: {
|
||||||
where: { status: "ACTIVE" },
|
where: {
|
||||||
|
status: {
|
||||||
|
in: ["ACTIVE", "PENDING_INVITE"]
|
||||||
|
}
|
||||||
|
},
|
||||||
include: {
|
include: {
|
||||||
manager: { select: { name: true, avatar: true, email: true } }
|
manager: { select: { name: true, avatar: true, email: true } }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
workspacesAsManager: {
|
workspacesAsManager: {
|
||||||
where: { status: "ACTIVE" },
|
where: {
|
||||||
|
status: {
|
||||||
|
in: ["ACTIVE", "PENDING_INVITE"]
|
||||||
|
}
|
||||||
|
},
|
||||||
include: {
|
include: {
|
||||||
employee: { select: { name: true, avatar: true, email: true } }
|
employee: { select: { name: true, avatar: true, email: true } }
|
||||||
}
|
}
|
||||||
@@ -30,21 +38,163 @@ export default async function WorkspacesPage() {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Se for admin, mostrar link para painel admin
|
||||||
|
const isAdmin = user?.role === "HR_ADMIN"
|
||||||
|
|
||||||
|
const totalAsManager = user?.workspacesAsManager.length || 0
|
||||||
|
const totalAsEmployee = user?.workspacesAsEmployee.length || 0
|
||||||
|
const totalWorkspaces = totalAsManager + totalAsEmployee
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div style={{ minHeight: "100vh", background: "#f7fafc", padding: "2rem" }}>
|
<div style={{ minHeight: "100vh", background: "#f7fafc", padding: "2rem" }}>
|
||||||
<div style={{ maxWidth: "1200px", margin: "0 auto" }}>
|
<div style={{ maxWidth: "1200px", margin: "0 auto" }}>
|
||||||
<div style={{ marginBottom: "2rem" }}>
|
<div style={{ marginBottom: "2rem", display: "flex", justifyContent: "space-between", alignItems: "center" }}>
|
||||||
|
<div>
|
||||||
<h1 style={{ fontSize: "2rem", fontWeight: "bold", marginBottom: "0.5rem" }}>
|
<h1 style={{ fontSize: "2rem", fontWeight: "bold", marginBottom: "0.5rem" }}>
|
||||||
Meus Workspaces
|
{totalAsManager > 0 ? "🎓 Minha Equipe" : "Meus Workspaces"}
|
||||||
</h1>
|
</h1>
|
||||||
<p style={{ color: "#666" }}>
|
<p style={{ color: "#666" }}>
|
||||||
Selecione um workspace para acessar
|
{totalAsManager > 0
|
||||||
|
? `Gerencie ${totalAsManager} ${totalAsManager === 1 ? 'colaborador' : 'colaboradores'} da sua equipe`
|
||||||
|
: "Selecione um workspace para acessar"
|
||||||
|
}
|
||||||
</p>
|
</p>
|
||||||
|
{totalWorkspaces > 0 && (
|
||||||
|
<div style={{ marginTop: "0.75rem", display: "flex", gap: "1rem" }}>
|
||||||
|
{totalAsManager > 0 && (
|
||||||
|
<span style={{
|
||||||
|
padding: "0.375rem 0.75rem",
|
||||||
|
background: "#d1fae5",
|
||||||
|
color: "#047857",
|
||||||
|
borderRadius: "0.375rem",
|
||||||
|
fontSize: "0.875rem",
|
||||||
|
fontWeight: "500"
|
||||||
|
}}>
|
||||||
|
🎓 {totalAsManager} {totalAsManager === 1 ? 'Colaborador' : 'Colaboradores'}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
{totalAsEmployee > 0 && (
|
||||||
|
<span style={{
|
||||||
|
padding: "0.375rem 0.75rem",
|
||||||
|
background: "#e0e7ff",
|
||||||
|
color: "#4c51bf",
|
||||||
|
borderRadius: "0.375rem",
|
||||||
|
fontSize: "0.875rem",
|
||||||
|
fontWeight: "500"
|
||||||
|
}}>
|
||||||
|
👤 {totalAsEmployee} {totalAsEmployee === 1 ? 'Gestor' : 'Gestores'}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div style={{ display: "flex", gap: "1rem", alignItems: "center" }}>
|
||||||
|
{isAdmin && (
|
||||||
|
<Link
|
||||||
|
href="/admin"
|
||||||
|
style={{
|
||||||
|
padding: "0.75rem 1.5rem",
|
||||||
|
background: "#1a202c",
|
||||||
|
color: "white",
|
||||||
|
borderRadius: "0.5rem",
|
||||||
|
textDecoration: "none",
|
||||||
|
fontWeight: "500"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
🔧 Painel Admin
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
<Link
|
||||||
|
href="/api/auth/logout"
|
||||||
|
style={{
|
||||||
|
padding: "0.75rem 1.5rem",
|
||||||
|
background: "#dc2626",
|
||||||
|
color: "white",
|
||||||
|
borderRadius: "0.5rem",
|
||||||
|
textDecoration: "none",
|
||||||
|
fontWeight: "500"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
🚪 Sair
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "1.5rem" }}>
|
{/* Seção de Gestão de Equipe */}
|
||||||
{/* Workspaces como Funcionário */}
|
{totalAsManager > 0 && (
|
||||||
{user?.workspacesAsEmployee.map((workspace) => (
|
<div style={{ marginBottom: "2rem" }}>
|
||||||
|
<h2 style={{ fontSize: "1.5rem", fontWeight: "600", marginBottom: "1rem", color: "#047857" }}>
|
||||||
|
🎓 Sua Equipe ({totalAsManager})
|
||||||
|
</h2>
|
||||||
|
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "1.5rem" }}>
|
||||||
|
{user?.workspacesAsManager.map((workspace) => (
|
||||||
|
<Link
|
||||||
|
key={workspace.id}
|
||||||
|
href={`/workspace/${workspace.slug}`}
|
||||||
|
style={{
|
||||||
|
background: "linear-gradient(135deg, #10b981 0%, #059669 100%)",
|
||||||
|
padding: "1.5rem",
|
||||||
|
borderRadius: "0.75rem",
|
||||||
|
boxShadow: "0 4px 6px rgba(16, 185, 129, 0.2)",
|
||||||
|
textDecoration: "none",
|
||||||
|
color: "white",
|
||||||
|
transition: "all 0.2s",
|
||||||
|
cursor: "pointer",
|
||||||
|
border: "2px solid transparent"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div style={{ display: "flex", alignItems: "center", gap: "1rem", marginBottom: "1rem" }}>
|
||||||
|
<div style={{
|
||||||
|
width: "56px",
|
||||||
|
height: "56px",
|
||||||
|
borderRadius: "50%",
|
||||||
|
background: "rgba(255, 255, 255, 0.2)",
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
fontSize: "1.5rem",
|
||||||
|
fontWeight: "bold",
|
||||||
|
border: "3px solid rgba(255, 255, 255, 0.3)"
|
||||||
|
}}>
|
||||||
|
{workspace.employee.name[0]}
|
||||||
|
</div>
|
||||||
|
<div style={{ flex: 1 }}>
|
||||||
|
<div style={{ fontWeight: "700", fontSize: "1.25rem", marginBottom: "0.25rem" }}>
|
||||||
|
{workspace.employee.name}
|
||||||
|
</div>
|
||||||
|
<div style={{ fontSize: "0.875rem", opacity: 0.9 }}>
|
||||||
|
{workspace.employee.email}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div style={{
|
||||||
|
padding: "0.75rem",
|
||||||
|
background: "rgba(255, 255, 255, 0.15)",
|
||||||
|
borderRadius: "0.5rem",
|
||||||
|
fontSize: "0.875rem",
|
||||||
|
fontWeight: "500",
|
||||||
|
display: "flex",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
alignItems: "center",
|
||||||
|
backdropFilter: "blur(10px)"
|
||||||
|
}}>
|
||||||
|
<span>🎓 Você é o Gestor</span>
|
||||||
|
<span>→</span>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Seção de Workspaces como Funcionário */}
|
||||||
|
{totalAsEmployee > 0 && (
|
||||||
|
<div>
|
||||||
|
<h2 style={{ fontSize: "1.5rem", fontWeight: "600", marginBottom: "1rem", color: "#4c51bf" }}>
|
||||||
|
👤 Seus Gestores ({totalAsEmployee})
|
||||||
|
</h2>
|
||||||
|
<div style={{ display: "grid", gridTemplateColumns: "repeat(auto-fill, minmax(300px, 1fr))", gap: "1.5rem" }}>
|
||||||
|
{user?.workspacesAsEmployee.map((workspace) => (
|
||||||
<Link
|
<Link
|
||||||
key={workspace.id}
|
key={workspace.id}
|
||||||
href={`/workspace/${workspace.slug}`}
|
href={`/workspace/${workspace.slug}`}
|
||||||
@@ -93,78 +243,65 @@ export default async function WorkspacesPage() {
|
|||||||
👤 Você é o Funcionário
|
👤 Você é o Funcionário
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
))}
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
{/* Workspaces como Gestor */}
|
{/* Mensagem quando não há workspaces */}
|
||||||
{user?.workspacesAsManager.map((workspace) => (
|
{totalWorkspaces === 0 && (
|
||||||
|
<div style={{
|
||||||
|
background: "white",
|
||||||
|
padding: "3rem",
|
||||||
|
borderRadius: "0.75rem",
|
||||||
|
textAlign: "center",
|
||||||
|
boxShadow: "0 1px 3px rgba(0,0,0,0.1)"
|
||||||
|
}}>
|
||||||
|
<div style={{ fontSize: "4rem", marginBottom: "1rem" }}>📋</div>
|
||||||
|
<h2 style={{ fontSize: "1.5rem", fontWeight: "600", marginBottom: "1rem" }}>
|
||||||
|
Nenhum Workspace Encontrado
|
||||||
|
</h2>
|
||||||
|
<p style={{ color: "#666", marginBottom: "2rem" }}>
|
||||||
|
Crie um novo workspace para começar a gerenciar sua equipe
|
||||||
|
</p>
|
||||||
<Link
|
<Link
|
||||||
key={workspace.id}
|
href="/workspace/create"
|
||||||
href={`/workspace/${workspace.slug}`}
|
|
||||||
style={{
|
style={{
|
||||||
background: "white",
|
display: "inline-block",
|
||||||
padding: "1.5rem",
|
padding: "1rem 2rem",
|
||||||
|
background: "#667eea",
|
||||||
|
color: "white",
|
||||||
borderRadius: "0.5rem",
|
borderRadius: "0.5rem",
|
||||||
boxShadow: "0 1px 3px rgba(0,0,0,0.1)",
|
|
||||||
textDecoration: "none",
|
textDecoration: "none",
|
||||||
color: "inherit",
|
fontWeight: "500",
|
||||||
transition: "all 0.2s",
|
fontSize: "1rem"
|
||||||
cursor: "pointer"
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div style={{ display: "flex", alignItems: "center", gap: "1rem", marginBottom: "1rem" }}>
|
+ Criar Primeiro Workspace
|
||||||
<div style={{
|
|
||||||
width: "48px",
|
|
||||||
height: "48px",
|
|
||||||
borderRadius: "50%",
|
|
||||||
background: "#10b981",
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
color: "white",
|
|
||||||
fontSize: "1.25rem",
|
|
||||||
fontWeight: "bold"
|
|
||||||
}}>
|
|
||||||
{workspace.employee.name[0]}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<div style={{ fontWeight: "600", fontSize: "1.1rem" }}>
|
|
||||||
{workspace.employee.name}
|
|
||||||
</div>
|
|
||||||
<div style={{ fontSize: "0.875rem", color: "#666" }}>
|
|
||||||
Seu Mentorado
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div style={{
|
|
||||||
padding: "0.5rem",
|
|
||||||
background: "#d1fae5",
|
|
||||||
borderRadius: "0.25rem",
|
|
||||||
fontSize: "0.875rem",
|
|
||||||
color: "#047857"
|
|
||||||
}}>
|
|
||||||
🎓 Você é o Gestor
|
|
||||||
</div>
|
|
||||||
</Link>
|
</Link>
|
||||||
))}
|
</div>
|
||||||
</div>
|
)}
|
||||||
|
|
||||||
{/* Botão para criar novo workspace */}
|
{/* Botão para criar novo workspace */}
|
||||||
<div style={{ marginTop: "2rem", textAlign: "center" }}>
|
{totalWorkspaces > 0 && (
|
||||||
<Link
|
<div style={{ marginTop: "2rem", textAlign: "center" }}>
|
||||||
href="/workspace/create"
|
<Link
|
||||||
style={{
|
href="/workspace/create"
|
||||||
display: "inline-block",
|
style={{
|
||||||
padding: "1rem 2rem",
|
display: "inline-block",
|
||||||
background: "#667eea",
|
padding: "1rem 2rem",
|
||||||
color: "white",
|
background: "#667eea",
|
||||||
borderRadius: "0.5rem",
|
color: "white",
|
||||||
textDecoration: "none",
|
borderRadius: "0.5rem",
|
||||||
fontWeight: "500"
|
textDecoration: "none",
|
||||||
}}
|
fontWeight: "500",
|
||||||
>
|
boxShadow: "0 2px 4px rgba(102, 126, 234, 0.3)"
|
||||||
+ Criar Novo Workspace
|
}}
|
||||||
</Link>
|
>
|
||||||
</div>
|
+ Adicionar Novo Colaborador
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user