diff --git a/web/components/layout/Page.tsx b/web/components/layout/Page.tsx index eb8e72a..6117157 100644 --- a/web/components/layout/Page.tsx +++ b/web/components/layout/Page.tsx @@ -8,7 +8,7 @@ import Link from 'next/link' import { Dialog, ExpansionIcon, - HelpwaveLogo, + HelpwaveLogo, IconButton, Input, MarkdownInterpreter, SolidButton, useLocalStorage @@ -16,7 +16,7 @@ import { import { getConfig } from '@/utils/config' import { useTasksTranslation } from '@/i18n/useTasksTranslation' import clsx from 'clsx' -import { CircleCheck, Grid2X2PlusIcon, User } from 'lucide-react' +import { BellIcon, CircleCheck, Grid2X2PlusIcon, SettingsIcon, User } from 'lucide-react' import { usePathname } from 'next/navigation' export const StagingDisclaimerDialog = () => { @@ -74,25 +74,26 @@ type HeaderProps = HTMLAttributes * The basic header for most pages */ export const Header = ({ ...props }: HeaderProps) => { + const translation = useTasksTranslation() + return (
-
- - - {'helpwave tasks'} - +
+
-
- {'TK'} - {'Test Klinkum'} -
-
+
+ + + + + + {'User Name'} @@ -127,8 +128,8 @@ const SidebarLink = ({ children, route, ...props }: SidebarLinkProps) => { {children} @@ -162,11 +163,15 @@ export const Sidebar = ({ ...props }: SidebarProps) => {