mirror of
https://github.com/complexcaresolutions/dak.c2s.git
synced 2026-03-17 16:03:41 +00:00
feat: add DAK logo to header
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
657a1abcaf
commit
2c1b064373
2 changed files with 6 additions and 0 deletions
BIN
frontend/src/assets/DAK_Best-Practice-768x768.png
Normal file
BIN
frontend/src/assets/DAK_Best-Practice-768x768.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -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 */}
|
||||
|
|
|
|||
Loading…
Reference in a new issue