feat: add DAK logo to header

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
CCS Admin 2026-02-26 18:40:07 +00:00
parent 657a1abcaf
commit 2c1b064373
2 changed files with 6 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -21,6 +21,7 @@ import { ScrollArea } from '@/components/ui/scroll-area'
import { Separator } from '@/components/ui/separator'
import { Bell, CheckCheck, LogOut, Menu, Moon, Sun, UserCog } from 'lucide-react'
import { useTheme } from '@/hooks/useTheme'
import dakLogo from '@/assets/DAK_Best-Practice-768x768.png'
interface HeaderProps {
onToggleSidebar: () => void
@ -56,6 +57,11 @@ export function Header({ onToggleSidebar }: HeaderProps) {
<span className="sr-only">Navigation umschalten</span>
</Button>
<div className="flex items-center gap-2">
<img src={dakLogo} alt="DAK Gesundheit" className="h-8 w-auto" />
<span className="hidden text-lg font-semibold sm:inline-block">DAK-Portal</span>
</div>
<div className="flex-1" />
{/* Dark mode toggle */}