diff --git a/frontend/src/components/AppLayout.tsx b/frontend/src/components/AppLayout.tsx index 5fede16..edb2416 100644 --- a/frontend/src/components/AppLayout.tsx +++ b/frontend/src/components/AppLayout.tsx @@ -13,6 +13,7 @@ import { SidebarMenuItem, SidebarProvider, SidebarInset, + SidebarTrigger, } from '@/components/ui/sidebar' import { Button } from '@/components/ui/button' import type { AuthContext } from '@/hooks/useAuth' @@ -36,7 +37,18 @@ export function AppLayout({ auth, children }: Props) { -

{t('app.title')}

+ + {t('app.title')} + {auth.user && (

{auth.user.display_name}

)} @@ -47,7 +59,11 @@ export function AppLayout({ auth, children }: Props) { {navItems.map((item) => ( - + {item.label} @@ -67,7 +83,10 @@ export function AppLayout({ auth, children }: Props) {
-
{children}
+
+ +
+
{children}
)