feat: add site header

This commit is contained in:
2025-12-14 21:00:52 -03:00
parent 58558b3fca
commit de99689fb0
4 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Component, input } from '@angular/core';
import { TitleCasePipe } from '@angular/common';
@Component({
selector: 'app-main-header',
imports: [TitleCasePipe],
templateUrl: './main-header.html',
styleUrl: './main-header.scss',
})
export class MainHeader {
title = input('');
}