import { Component, input } from '@angular/core'; import { RouterLink } from '@angular/router'; /** Organism: site header with Rijksoverheid-style wordmark + title. ponytail: text wordmark instead of the licensed Rijksoverheid logo. */ @Component({ selector: 'app-site-header', imports: [RouterLink], // :host display:block so the full-bleed bar fills the flex column (custom // elements default to display:inline, which collapsed the bar to its content). styles: [':host{display:block}'], template: `
Rijksoverheid
BIG-register
{{ subtitle() }}
`, }) export class SiteHeaderComponent { subtitle = input('Mijn omgeving'); }