add metadata components

This commit is contained in:
Joe Arndt 2026-02-23 23:21:50 -06:00
parent 3443a39ab3
commit a0b1ed8d07
21 changed files with 113 additions and 11 deletions

View file

@ -0,0 +1,36 @@
<div class="metadata-container">
<mat-tab-group>
<mat-tab>
<ng-template mat-tab-label>
<div class="metadata-tab">
<p>Categories</p>
<mat-icon class="example-tab-icon">ballot</mat-icon>
</div>
</ng-template>
<app-categories />
</mat-tab>
<mat-tab>
<ng-template mat-tab-label>
<div class="metadata-tab">
<p>Merchants</p>
<mat-icon class="example-tab-icon">shopping_cart</mat-icon>
</div>
</ng-template>
<app-merchants />
</mat-tab>
<mat-tab>
<ng-template mat-tab-label>
<div class="metadata-tab">
<p>Tags</p>
<mat-icon class="example-tab-icon">label</mat-icon>
</div>
</ng-template>
<app-tags />
</mat-tab>
</mat-tab-group>
</div>