+
- Sistema
-
- Viver Melhor
+ SVM
diff --git a/src/app/(dashboard)/_sidebar/index.tsx b/src/app/(dashboard)/_sidebar/index.tsx
index 9242e57b..4bb57fa2 100644
--- a/src/app/(dashboard)/_sidebar/index.tsx
+++ b/src/app/(dashboard)/_sidebar/index.tsx
@@ -1,9 +1,10 @@
import {
- BoltIcon,
- HeartHandshakeIcon,
- LayoutDashboardIcon,
- Share2Icon,
- UserRoundCheckIcon,
+ Bolt,
+ Headset,
+ LayoutDashboard,
+ Share2,
+ UserRoundCheck,
+ UserRoundCog,
Users2Icon,
} from 'lucide-react'
@@ -36,11 +37,11 @@ export async function DashboardSidebar() {
const SIDEBAR_SECTIONS = [
{
- id: 'common',
+ title: 'Geral',
links: [
{
label: 'Visão Geral',
- icon:
,
+ icon:
,
path: ROUTES.dashboard.main,
},
{
@@ -50,34 +51,34 @@ const SIDEBAR_SECTIONS = [
},
{
label: 'Encaminhados',
- icon:
,
- path: ROUTES.dashboard.referrals.main,
+ icon:
,
+ path: ROUTES.dashboard.forwarded.main,
},
{
label: 'Aprovações',
- icon:
,
+ icon:
,
path: ROUTES.dashboard.approvals.main,
},
- {
- label: 'Equipe',
- icon:
,
- path: ROUTES.dashboard.teams.main,
- },
],
},
{
- id: 'others',
+ title: 'Outros',
links: [
+ {
+ label: 'Equipes',
+ icon:
,
+ path: ROUTES.dashboard.teams.main,
+ },
{
label: 'Configurações',
- icon:
,
+ icon:
,
path: ROUTES.dashboard.settings.main,
},
- // {
- // label: 'Suporte',
- // icon:
,
- // path: ROUTES.dashboard.support.main,
- // },
+ {
+ label: 'Suporte',
+ icon:
,
+ path: ROUTES.dashboard.support.main,
+ },
],
},
]
diff --git a/src/app/(dashboard)/_sidebar/menu-section.tsx b/src/app/(dashboard)/_sidebar/menu-section.tsx
index e0746f8b..f5c8e869 100644
--- a/src/app/(dashboard)/_sidebar/menu-section.tsx
+++ b/src/app/(dashboard)/_sidebar/menu-section.tsx
@@ -8,7 +8,7 @@ import { cn } from '@/utils/class-name-merge'
interface DashboardSidebarMenuSectionProps {
sections: {
- id: string
+ title: string
links: {
label: string
icon: React.ReactNode
@@ -26,7 +26,14 @@ export function DashboardSidebarMenuSection({
return (
{sections.map((section) => (
-
+
+
+ {section.title}
+
+