From b5548abf37c84d3b40d0826286c42f292e21bc18 Mon Sep 17 00:00:00 2001 From: admin-valentin Date: Fri, 31 Jul 2026 17:12:03 +0000 Subject: [PATCH] feat(shell): add NotificationBell to header --- src/components/dashboard-shell.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/dashboard-shell.tsx b/src/components/dashboard-shell.tsx index b677d19..0ea7169 100644 --- a/src/components/dashboard-shell.tsx +++ b/src/components/dashboard-shell.tsx @@ -5,6 +5,7 @@ import Link from 'next/link'; import { usePathname, useRouter } from 'next/navigation'; import { useSession } from './session-provider'; import { TenantSwitcher } from './tenant-switcher'; +import { NotificationBell } from './notification-bell'; import { NavIcon } from './nav-icon'; import { STAGE_LABEL, countByStatus, visibleSections, type Role } from '../lib/navigation'; @@ -144,9 +145,12 @@ export function DashboardShell({ children }: { children: React.ReactNode }) {
- - {activeTenant.role} - +
+ + + {activeTenant.role} + +
{children}