A hero is a top-level container designed to be large and captivating, typically used as the first component to introduce a page's main purpose or message.
Heroes are the first visual element users see on a page and are intended to make a bold statement. They're flexible and extensible, including pre-styled content containers for common layouts such as titles, subtitles, taglines, and body content. Heroes should only be used once per page.
When to use
Avoid heroes when:
To use the hero components, import DAFF_HERO_COMPONENTS
directly into your custom component:
import { DAFF_HERO_COMPONENTS } from '@daffodil/design/hero';
@Component({
selector: 'custom-component',
templateUrl: './custom-component.component.html',
imports: [
DAFF_HERO_COMPONENTS,
],
})
export class CustomComponent {}
To use hero in a module, import DaffHeroModule
into your custom module:
import { NgModule } from '@angular/core';
import { DaffHeroModule } from '@daffodil/design/hero';
import { CustomComponent } from './custom.component';
@NgModule({
declarations: [
CustomComponent,
],
exports: [
CustomComponent,
],
imports: [
DaffHeroModule,
],
})
export class CustomComponentModule { }
This method is deprecated. It's recommended to update all custom components to standalone.
A hero consists of the following components, displayed in the order listed:
<daff-hero>
: The main wrapper that holds all hero content.
[daffHeroIcon]
: Displays visual or branding element. Avoid using for interactive icons.
[daffHeroTagline]
: Short, memorable phrase that provides quick context.
[daffHeroTitle]
: The primary heading text. Applied to heading elements (<h1>
).
[daffHeroSubtitle]
: Secondary descriptive text displayed beneath the title.
[daffHeroBody]
: Flexible container for additional content or actions. It's unstyled except for spacing and should only be used once per hero.
<daff-hero>
<div daffHeroIcon>
<img src="assets/summer-sale-icon.svg" alt="Summer sale icon" />
</div>
<div daffHeroTagline>Limited Time Offer</div>
<h1 daffHeroTitle>Summer Collection Sale</h1>
<p daffHeroSubtitle>Up to 50% off select items through July 31</p>
<div daffHeroBody>
<button daff-button color="secondary">Shop the sale</button>
<button daff-button color="theme">Learn more</button>
</div>
</daff-hero>
Use the color
property to change the background of a hero.
Control hero-specific text alignment with the textAlignment
property. It defaults to left
and does not affect [daffHeroBody]
content or nested elements.
Use the compact
property on hero to reduce padding and suit UIs with tighter spacing requirements.
Heroes are flexible enough to support custom grid layouts for more complex arrangements: