Components/1d650718-7732-46b0-b199-b48f950c5adf

Dashboard Header

headerfrom Fintech Light
Sign in to Add to Project
Live

AI Usage Rules

Compact header for dashboard views. Include breadcrumb navigation and notification bell.

Code Template

<header className="bg-white border-b border-slate-200 px-6 py-3 flex items-center justify-between"><div className="flex items-center gap-4"><span className="font-bold text-lg text-slate-900">{logo}</span>{breadcrumb}</div><div className="flex items-center gap-3">{notifications}{userMenu}</div></header>

Props Schema

PropertyTypeDefaultDescription
logostring
userMenuobject
breadcrumbstring
notificationsobject
View raw JSON schema
{
  "type": "object",
  "properties": {
    "logo": {
      "type": "string"
    },
    "userMenu": {
      "type": "object"
    },
    "breadcrumb": {
      "type": "string"
    },
    "notifications": {
      "type": "object"
    }
  }
}