Changed the dashboards

This commit is contained in:
2026-06-18 15:21:56 +02:00
parent 3f839bc0fc
commit 0898ad4ebf
7 changed files with 147 additions and 28 deletions
+7 -1
View File
@@ -41,6 +41,12 @@ export function Topbar({ onMenuClick }: TopbarProps) {
return (
<header className="sticky top-0 z-20 flex h-16 items-center gap-4 border-b bg-background px-4 lg:px-6">
{/* Logo */}
<div className="flex items-center gap-2 mr-2 shrink-0">
<div className="w-3 h-3 rounded-full bg-[#0d9488]" />
<span className="text-[#0d9488] font-bold text-sm tracking-wide">CRM</span>
</div>
{/* Mobile menu button */}
<Button variant="ghost" size="icon" className="lg:hidden" onClick={onMenuClick}>
<Menu className="h-5 w-5" />
@@ -81,7 +87,7 @@ export function Topbar({ onMenuClick }: TopbarProps) {
<DropdownMenuTrigger asChild>
<Button variant="ghost" size="icon" className="relative text-muted-foreground">
<Bell className="h-5 w-5" />
<span className="absolute -right-0.5 -top-0.5 flex h-4 w-4 items-center justify-center rounded-full bg-primary text-[10px] font-medium text-primary-foreground">
<span className="absolute -right-0.5 -top-0.5 flex h-4 w-4 items-center justify-center rounded-full bg-[#f43f5e] text-white text-[10px] font-medium">
3
</span>
</Button>