SenUI Logo

SenHeader Component

The SenHeader renders your site’s top bar with a logo, title, navigation links, and optional action items on the right.

Live Preview

Usage

<SenHeader
  logoSrc="/logo.png"
  logoAlt="MySite Logo"
  title="MySite"
  links={[
    { label: 'Home', href: '/' },
    { label: 'Blog', href: '/blog' },
    { label: 'About', href: '/about' },
  ]}
  actions={<SenButton variant="primary">Sign In</SenButton>}
/>