feat(theme): BrandBar

This commit is contained in:
Joseph Doherty
2026-06-01 04:46:58 -04:00
parent af8682c0f2
commit 8e70718ca4
3 changed files with 34 additions and 0 deletions
@@ -0,0 +1,11 @@
@* Components/BrandBar.razor *@
<div class="brand">
@if (Logo is not null) { @Logo }
else { <span class="mark">&#9646;</span> }
@Product
</div>
@code {
[Parameter, EditorRequired] public string Product { get; set; } = string.Empty;
[Parameter] public RenderFragment? Logo { get; set; }
}