Page Header
Live Demos HubPage Header
Interactive production-grade hypermedia component for HTMXUI.
Interactive Preview
{title}
{description}
HTML Source
<!--
Component: page-header.html
Configurable State: themeColor ('primary'|'secondary'|'destructive'), size ('sm'|'md'|'lg'), isOpen (boolean)
Usage: Bind styles dynamically using hx-class="{ 'bg-primary': themeColor === 'primary' }" or hx-style="{ width: size === 'lg' ? '100%' : 'auto' }"
-->
<header hx-ext="reactive" hx-state="{ themeColor: \'primary\', size: \'md\', isOpen: false }" class="flex flex-col gap-1 border-b border-border pb-4 mb-4">
<h1 class="text-2xl font-bold tracking-tight">{title}</h1>
<p class="text-muted-foreground">{description}</p>
</header>