@page "/tech-stack" @using MudBlazor @using WebAssembly.Services @inject IMyDialogService DialogService

Tech Stack

@foreach (var tech in Data.TechStackData.RawData) {
@tech.Name
@tech.Description
}
@code { private void OpenDialog(Data.TechStack tech) { DialogService.Show(new DialogContents { Title = tech.Name, TechStack = tech }); } }